mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
See test with Java, we want preserve the invariant that if return type and value parameter types are same in Kotlin, than we can use such return-value as argument for that parameter
6 lines
108 B
Java
Vendored
6 lines
108 B
Java
Vendored
public class JavaClass {
|
|
public static String test() {
|
|
return MainKt.bar(MainKt.foo());
|
|
}
|
|
}
|