blob: bf9b0f7c2aae2c818011291e76bd3362f7aa4347 [file] [log] [blame]
fun test1() {
loop@ while(true) {
}
}
fun test2() {
listOf(1).forEach lit@ {
if (it == 0) return@lit
print(it)
}
}
fun test3() {
l1@
/*comment*/ {
}
l2@ /*comment*/ {
}
}
fun test4() {
l1@
//eol comment
{
}
l2@ //eol comment
{
}
}