Merge pull request #201 from lopekpl/DANGLING_FUNCTION_LITERAL_ARGUMENT_SUSPECTED
QuickFix for DANGLING_FUNCTION_LITERAL_ARGUMENT_SUSPECTED
This commit is contained in:
@@ -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>
|
||||
}
|
||||
Reference in New Issue
Block a user