Support mapping between Kotlin functions and JVM methods/constructors

This commit is contained in:
Alexander Udalov
2015-07-15 23:33:37 +03:00
parent 93656c93c1
commit 936bede8b1
14 changed files with 323 additions and 38 deletions

View File

@@ -0,0 +1,9 @@
public class javaMethods {
public String f(String s) {
return s;
}
public static String g(String s) {
return s;
}
}