new quick fixes: add parameter, remove parameter, change function literal signature

This commit is contained in:
Alexander Kirillin
2013-05-07 20:21:02 +04:00
parent 41ec5724df
commit 41045d2a1e
29 changed files with 756 additions and 11 deletions
@@ -0,0 +1,9 @@
// "Add parameter to function 'foo'" "true"
// DISABLE-ERRORS
fun foo(x: Int) {
foo();
foo(1);
foo(1, 4<caret>);
foo(2, 3, sdsd);
}