mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
19 lines
265 B
Java
19 lines
265 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(th<caret>is);
|
|
}
|
|
}.run();
|
|
}
|
|
}
|
|
}
|
|
|