mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
16 lines
226 B
Java
16 lines
226 B
Java
class Test {
|
|
|
|
public static String test1() {
|
|
return A.test1();
|
|
}
|
|
|
|
public static String test2() {
|
|
return A.test2();
|
|
}
|
|
|
|
public static String test3() {
|
|
return A.test3("JAVA");
|
|
}
|
|
|
|
}
|