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