[Test] Add test for KT-47892

This commit is contained in:
Dmitriy Novozhilov
2023-07-03 13:18:10 +03:00
committed by Space Team
parent 637b46cb6e
commit 03973419dd
7 changed files with 54 additions and 0 deletions
@@ -0,0 +1,12 @@
// ISSUE: KT-47892
fun test(b: Boolean) {
while (b) {
class A {
init {
continue
}
constructor(): super()
}
}
}