mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 00:50:53 +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("");
|
|
}
|
|
} |