Files
kotlin-fork/idea/testData/intentions/removeUnnecessaryParentheses/lambda2.kt
T

9 lines
102 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun main() {
foo()
<caret>({ foo() } as? () -> Unit)
}
fun foo() {}