()
| 25 | } |
| 26 | |
| 27 | static void doPrivileged() { |
| 28 | A a = AccessController.doPrivileged(new PrivilegedAction<A>() { |
| 29 | @Override |
| 30 | public A run() { |
| 31 | return new A(); |
| 32 | } |
| 33 | }); |
| 34 | } |
| 35 | |
| 36 | static void compareAndSwapObject() { |
| 37 | Unsafe unsafe = Unsafe.getUnsafe(); |
no outgoing calls
no test coverage detected