()
| 24 | } |
| 25 | |
| 26 | static void testGetClass() throws Exception { |
| 27 | U u = new U(); |
| 28 | Class<? extends U> klass = u.getClass(); |
| 29 | Method foo1 = klass.getDeclaredMethod("foo", int.class); |
| 30 | Method foo2 = klass.getMethod("foo", U.class); |
| 31 | use(foo1, foo2); |
| 32 | } |
| 33 | |
| 34 | static void use(Object... objs) { |
| 35 | } |
no test coverage detected