Merge pull request #201 from lopekpl/DANGLING_FUNCTION_LITERAL_ARGUMENT_SUSPECTED

QuickFix for DANGLING_FUNCTION_LITERAL_ARGUMENT_SUSPECTED
This commit is contained in:
Natalia Ukhorskaya
2013-02-21 07:25:14 -08:00
7 changed files with 109 additions and 0 deletions
@@ -0,0 +1,8 @@
// "Add semicolon after invocation of 'foo'" "true"
fun foo() {}
fun foo(x : Int) {}
fun bar() {
foo(4);
{}<caret>
}
@@ -0,0 +1,8 @@
// "Add semicolon after invocation of 'foo'" "true"
fun foo() {}
fun foo(x : Int) {}
fun bar() {
foo(4)
{}<caret>
}