Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlStructures
/
continueInInitBlock.kt
blob: 17a35cef980e95aef4f03980d5f17565708cc456 [
file
]
// ISSUE: KT-47892
fun test
(
b
:
Boolean
)
{
while
(
b
)
{
class
A
{
init
{
continue
}
constructor
():
super
()
}
}
}