mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
264 B
Java
10 lines
264 B
Java
package a.b;
|
|
import a.*;
|
|
public class Foo {
|
|
private <T> T f() { return null;}
|
|
void m(Outer o){
|
|
o.get(f<error descr="'a.Outer.Inner' is inaccessible here">()</error>);
|
|
o.get1();
|
|
o.f = f<error descr="'a.Outer.Inner' is inaccessible here">()</error>;
|
|
}
|
|
} |