Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b1f59e5f0d739fd4c19f9e413cc9c324657eafed
/
.
/
compiler
/
testData
/
cfg
/
controlStructures
/
breakInsideLocal.kt
blob: 02d5932e46d6faf50ee57146727c81bdfce6019f [
file
]
fun test
()
{
while
(
true
)
{
class
LocalClass
(
val x
:
Int
)
{
init
{
break
}
constructor
()
:
this
(
42
)
{
break
}
fun foo
()
{
break
}
}
}
}