Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
formatter
/
LabeledExpression.after.kt
blob: ab99b80594b46a5b1c8c3bc2859a4bd8f0751487 [
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
{
}
}