qualify this with containing class (IDEA-49251)

This commit is contained in:
anna
2011-10-25 20:17:53 +02:00
parent ed24c9b396
commit 1ba41a4b26
10 changed files with 249 additions and 0 deletions
@@ -0,0 +1,10 @@
// "Qualify this expression with 'Test'" "false"
class Test {
void foo(Test t){}
static class Foo {
Foo() {
foo(thi<caret>s);
}
}
}