Files

12 lines
134 B
Plaintext

interface I<T> {
void m(T t);
}
class MyTest {
{
new I<String>() {
public void m(String s) {}
}.m("");
}
}