Quick Fixes: Support cross-language "Create from Usage" with Kotlin target

This commit is contained in:
Alexey Sedunov
2017-12-13 17:06:54 +03:00
parent d44313876c
commit 908bf71ae6
48 changed files with 929 additions and 127 deletions

View File

@@ -0,0 +1,6 @@
// "Add method 'foo' to 'TestKt'" "true"
class J {
void test() {
boolean b = TestKt.<caret>foo(1, "2");
}
}