mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
18 lines
283 B
Java
18 lines
283 B
Java
import java.util.List;
|
|
|
|
class C {
|
|
void method(List l) {
|
|
}
|
|
}
|
|
|
|
class Usage implements List {
|
|
{
|
|
final C c = new C();
|
|
c.method(this);
|
|
new Runnable() {
|
|
public void run() {
|
|
c.method(Usage.this);
|
|
}
|
|
}.run();
|
|
}
|
|
} |