blob: 4e1d8de48f39a91ddc8f252336b284a83ef9cd59 [file] [log] [blame]
interface I {
@org.jetbrains.annotations.NonNls String foo();
}
class B implements I{
public String foo() {
return "text";
}
}
class A {
B inner = new B() {
public String foo() {
return "text";
}
};
}