(String[] args)
| 135 | } |
| 136 | |
| 137 | public static void main(String[] args) { |
| 138 | System.out.println("method count is " |
| 139 | + Unsafe.class.getDeclaredMethods().length); |
| 140 | |
| 141 | Unsafe u = avian.Machine.getUnsafe(); |
| 142 | |
| 143 | unsafeCatch(u); |
| 144 | unsafeMemory(u); |
| 145 | unsafeArray(u); |
| 146 | } |
| 147 | } |
nothing calls this directly
no test coverage detected