Type-related quick fixes: Render types using fully qualified names

This commit is contained in:
Alexey Sedunov
2014-10-16 20:42:24 +04:00
parent b212fbd0b5
commit 07a2a16232
30 changed files with 356 additions and 69 deletions
@@ -0,0 +1,8 @@
// "Add parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(x: Int) {
foo(,);
foo(1);
foo(2, kotlin.modules.ModuleBuilder("", "")<caret>);
}