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