mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
10 lines
211 B
Java
Vendored
10 lines
211 B
Java
Vendored
class Child extends Parent {
|
|
public static String a = "2";
|
|
public static String foo() {
|
|
return "Child.foo()";
|
|
}
|
|
public static String foo(int i) {
|
|
return "Child.foo(int)";
|
|
}
|
|
}
|