Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
controlStructures
/
continueInInitBlock.fir.kt
blob: a2b255cfc68fc291cc454bda36e92e6e77936e13 [
file
]
// ISSUE: KT-47892
fun test
(
b
:
Boolean
)
{
while
(
b
)
{
class
A
{
init
{
<!
BREAK_OR_CONTINUE_JUMPS_ACROSS_FUNCTION_BOUNDARY
!>
continue
<!>
}
constructor
():
super
()
}
}
}