mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
7 lines
116 B
Java
Vendored
7 lines
116 B
Java
Vendored
class Parent {
|
|
private static int a = 1;
|
|
private static String foo() {
|
|
return "Parent.foo";
|
|
}
|
|
}
|