--- old/test/jdk/valhalla/valuetypes/ValueArray.java 2019-05-15 13:58:20.323916953 -0400 +++ new/test/jdk/valhalla/valuetypes/ValueArray.java 2019-05-15 13:58:18.327907055 -0400 @@ -73,8 +73,8 @@ ValueArray test = new ValueArray(c, elements.length); test.run(elements); Class compType = c.getComponentType(); - if (compType.isValue()) { - test.testSetNullElement(compType == compType.asBoxType()); + if (compType.isInlineClass()) { + test.testSetNullElement(compType == compType.asNullableType()); } } @@ -189,7 +189,7 @@ } void testSetNullElement(boolean nullable) { - assert(array.getClass().getComponentType().isValue()); + assert(array.getClass().getComponentType().isInlineClass()); for (int i=0; i < array.length; i++) { try { Array.set(array, i, null);