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 @@
// "Remove parameter 'x'" "true"
// DISABLE-ERRORS
fun foo(x: Int, y: Int) {
foo(<caret>);
foo(1);
foo(1, 2);
foo(2, 3, sdsd);
}