blob: e9f9cb741af39998b615de87d392337b27054f7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package test;
import java.util.Arrays;
public class Foo {
public static void main(String[] args) {
System.out.println(Arrays.toString(new
Foo().getClass().getInterfaces()));
((Runnable) new Foo()).run();
}
}
|