Files
kotlin-fork/compiler/testData/diagnostics/tests/controlStructures/continueInInitBlock.kt
T
2023-07-05 06:56:12 +00:00

13 lines
189 B
Kotlin
Vendored

// ISSUE: KT-47892
fun test(b: Boolean) {
while (b) {
class A {
init {
continue
}
constructor(): super()
}
}
}