Files

11 lines
155 B
Java

// "Qualify this expression with 'Test'" "false"
class Test {
void foo(String t){}
static class Foo {
Foo() {
foo(thi<caret>s);
}
}
}