Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
AnnotatedLoop.kt
blob: 6bc18a98a9df5c032e406145194cc23c33c0a0df [
file
]
// FIR_IDENTICAL
@Target
(
AnnotationTarget
.
TYPE
)
annotation
class
My
fun foo
()
{
for
(
i
:
@My
Int
in
0.
.
41
)
{
if
(
i
==
13
)
return
}
}