13 lines
189 B
Kotlin
Vendored
13 lines
189 B
Kotlin
Vendored
// ISSUE: KT-47892
|
|
|
|
fun test(b: Boolean) {
|
|
while (b) {
|
|
class A {
|
|
init {
|
|
continue
|
|
}
|
|
constructor(): super()
|
|
}
|
|
}
|
|
}
|