(String[] args)
| 5 | class NativeModel { |
| 6 | |
| 7 | public static void main(String[] args) throws Exception { |
| 8 | arraycopy(); |
| 9 | doPrivileged(); |
| 10 | compareAndSwapObject(); |
| 11 | } |
| 12 | |
| 13 | static void arraycopy() { |
| 14 | Object[] src1 = new Object[5]; |
nothing calls this directly
no test coverage detected