blob: ce89a73d5088e20780068b6c9ef043562ce6862f [file] [log] [blame]
package p;
public class Foo {
// Test qualification with outer type
void foo() {
Bar bar= new Bar() {
{
foo(); // <--- invoke here
}
};
}
}
class Bar {
}