Files
kotlin/compiler/testData/diagnostics/tests/shadowing/ShadowPropertyInClosure.kt
2015-03-18 16:06:44 +03:00

4 lines
49 B
Kotlin
Vendored

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