QuickFix for DANGLING_FUNCTION_LITERAL_ARGUMENT_SUSPECTED

This commit is contained in:
Wojciech Lopata
2013-02-20 11:09:44 +01:00
parent 881de132f7
commit 58a8c0ed08
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>
}