Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolveWithStdlib/runOnIntegerLiteral.kt
T
2020-03-19 09:51:01 +03:00

8 lines
115 B
Kotlin
Vendored

class TestInitValInLambdaCalledOnce {
val x: Int
init {
1.run {
x = 0
}
}
}