Files
kotlin-fork/compiler/testData/diagnostics/tests/shadowing/ShadowPropertyInClosure.kt
T

5 lines
66 B
Kotlin
Vendored

// FIR_IDENTICAL
val i = 17
val f: () -> Int = { var i = 17; i }