mirror of
https://github.com/corda/corda.git
synced 2025-06-22 00:57:21 +00:00
Merge remote branch 'origin/master' into openjdk
Conflicts: makefile src/compile.cpp src/compiler.cpp src/type-generator.cpp
This commit is contained in:
@ -65,5 +65,11 @@ public class Arrays {
|
||||
p = false;
|
||||
expect(array[1] == array[p ? 0 : 1]);
|
||||
}
|
||||
|
||||
{ int[] array = new int[1024];
|
||||
array[1023] = -1;
|
||||
expect(array[1023] == -1);
|
||||
expect(array[1022] == 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user