blob: 8a65f893893c576c4439f370d3d636aaa9bdd2d0 [file] [log] [blame]
// "Qualify this expression with 'Test'" "true"
class Test {
void foo(Test t){}
class Foo {
Foo() {
foo(Test.this);
}
}
}