14 lines
155 B
Kotlin
Vendored
14 lines
155 B
Kotlin
Vendored
// !DUMP_CFG
|
|
class Foo {
|
|
init {
|
|
val x = 1
|
|
}
|
|
}
|
|
|
|
class Bar {
|
|
init {
|
|
val x = 1
|
|
throw Exception()
|
|
val y = 2
|
|
}
|
|
} |