Create from usage: Support generation of Java methods from usages in Kotlin code

This commit is contained in:
Alexey Sedunov
2015-02-10 15:17:13 +03:00
parent 97b0f50d35
commit 34d8e1c08c
23 changed files with 300 additions and 25 deletions
@@ -0,0 +1,6 @@
// "Create function 'foo'" "true"
// ERROR: Unresolved reference: foo
fun test(a: A): Int? {
return a.<caret>foo<String, Int>(1, "2")
}