2cc9d8e29b
#KT-5766 Fixed
20 lines
293 B
Java
20 lines
293 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");
|
|
}
|
|
|
|
public static String test4() {
|
|
return A.getC();
|
|
}
|
|
|
|
}
|