mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
10 lines
211 B
Java
10 lines
211 B
Java
public class funNestedStaticClass2 {
|
|
public static class A {
|
|
public static class B {
|
|
protected static String protectedFun() {
|
|
return "OK";
|
|
}
|
|
}
|
|
}
|
|
}
|