mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: d02496feb2ad7913ec4973d1ea16cba17cdeed79
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("");
|
|
}
|
|
} |