Files
kotlin-fork/idea/testData/quickfix/expressions/afterDanglingFunctionLiteralArgument.kt
T
2013-02-21 16:00:24 +01:00

9 lines
126 B
Kotlin

// "Add semicolon after invocation of 'foo'" "true"
fun foo() {}
fun foo(x : Int) {}
fun bar() {
foo(4);
{}<caret>
}