mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
9 lines
165 B
Java
Vendored
9 lines
165 B
Java
Vendored
class Child extends Parent {
|
|
public static String bar() {
|
|
return "Child.bar";
|
|
}
|
|
public static String baz() {
|
|
return "Child.baz";
|
|
}
|
|
}
|