blob: 76457876557c306e39ffab64f5ff8dd6a7a44627 [file] [log] [blame]
package p;
public class Foo extends Bar {
// Test correct "thisification".
void foo() {
X x= new X() {
{
getDisplay(); // <- invoke here
}
};
}
}
class X {
}