mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
19 lines
262 B
Java
19 lines
262 B
Java
// "Qualify this expression with 'Test.Foo'" "true-preview"
|
|
class Test {
|
|
void foo(Foo m) {
|
|
}
|
|
|
|
|
|
class Foo {
|
|
void bar() {
|
|
new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
foo(Foo.this);
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
}
|
|
|