Files
kotlin-fork/idea/testData/quickfix/expressions/removeUselessCastForLambdaInNecessaryNestedParens2.kt
T
2021-05-28 18:21:31 +03:00

8 lines
125 B
Kotlin
Vendored

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