Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/cfg/initBlock.kt
T
2020-12-16 19:52:30 +03:00

15 lines
156 B
Kotlin
Vendored

// !DUMP_CFG
class Foo {
init {
val x = 1
}
}
class Bar {
init {
val x = 1
throw Exception()
val y = 2
}
}