mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
12 lines
134 B
Plaintext
12 lines
134 B
Plaintext
interface I<T> {
|
|
void m(T t);
|
|
}
|
|
|
|
class MyTest {
|
|
{
|
|
|
|
new I<String>() {
|
|
public void m(String s) {}
|
|
}.m("");
|
|
}
|
|
} |