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

9 lines
125 B
Kotlin

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