blob: 7218c605ba07e6dc17540726b4116947943e0f8d [file] [log] [blame]
public interface Anonymous<T> {}
class Test {
public static void main(String[] args) {
Anonymous<Integer> anon = new Anonymous<Integer>() {};
}
}