Files
kotlin-fork/idea/testData/quickfix/expressions/removeUselessCastForLambdaInParens2.kt
T
2019-01-09 12:16:01 +03:00

8 lines
121 B
Kotlin
Vendored

// "Remove useless cast" "true"
fun foo() {}
fun test() {
foo()
// comment
({ "" } as<caret> () -> String)
}