test/compiler/arraycopy/TestArrayCopyNoInit.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/test/compiler/arraycopy/TestArrayCopyNoInit.java	Thu Mar 12 16:59:43 2015
--- new/test/compiler/arraycopy/TestArrayCopyNoInit.java	Thu Mar 12 16:59:43 2015

*** 74,84 **** --- 74,84 ---- } static TestArrayCopyNoInit[] m5(Object[] src) { Object tmp = src[0]; TestArrayCopyNoInit[] dest = new TestArrayCopyNoInit[10]; ! System.arraycopy(src, 0, dest, 0, 10); return dest; } static class A { }
*** 108,118 **** --- 108,118 ---- } static H[] m6(Object[] src) { Object tmp = src[0]; H[] dest = new H[10]; ! System.arraycopy(src, 0, dest, 0, 10); return dest; } static Object m7_src(Object src) { return src;

test/compiler/arraycopy/TestArrayCopyNoInit.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File