()
| 73 | } |
| 74 | |
| 75 | static void set() throws Exception { |
| 76 | // set static field |
| 77 | Field stat = U.class.getField("stat"); |
| 78 | stat.set(null, new Object()); |
| 79 | |
| 80 | // set instance field |
| 81 | Field inst = U.class.getField("inst"); |
| 82 | inst.set(new U(), new V()); |
| 83 | } |
| 84 | |
| 85 | static void use(Object o) { |
| 86 | } |