Support visibility for protected static members
#KT-2999 Fixed
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
import java.lang.String;
|
||||
|
||||
public class protectedStaticClass2 {
|
||||
public static class A {
|
||||
protected static class B {
|
||||
public B() {
|
||||
}
|
||||
|
||||
public String foo() {
|
||||
return "OK";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user