--- old/src/hotspot/share/gc/shared/memAllocator.cpp 2019-05-29 12:29:24.589319220 +0200 +++ new/src/hotspot/share/gc/shared/memAllocator.cpp 2019-05-29 12:29:24.181311976 +0200 @@ -426,6 +426,8 @@ mem_clear(mem); } arrayOopDesc::set_length(mem, _length); + assert(ArrayKlass::cast(_klass)->storage_properties().is_empty() || + ArrayKlass::cast(_klass)->dimension() == 1, "Multidim should have no storage props"); return finish_with_properties(mem, ArrayKlass::cast(_klass)->storage_properties()); }