mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
12 lines
194 B
Java
12 lines
194 B
Java
package protectedPack;
|
|
|
|
import java.lang.String;
|
|
|
|
public class protectedStaticClass {
|
|
protected static class Inner {
|
|
public String foo() {
|
|
return "OK";
|
|
}
|
|
}
|
|
}
|