mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
25 lines
337 B
Java
25 lines
337 B
Java
// "Qualify this expression with 'Test.Foo'" "false"
|
|
class Test {
|
|
public void main() {
|
|
new Foo() {
|
|
void bar() {
|
|
new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
foo(th<caret>is);
|
|
}
|
|
}.run();
|
|
}
|
|
}.toString();
|
|
}
|
|
|
|
void foo(Foo m) {
|
|
}
|
|
|
|
|
|
class Foo {
|
|
|
|
}
|
|
}
|
|
|