Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
BasicAnnotations.fir.kt
blob: ad0b3f65e63c64c2bbff248002e0af9cdf3505a6 [
file
]
annotation
class
my
annotation
class
my1
(
val i
:
Int
)
annotation
class
my2
(
val i
:
Int
=
0
)
@my
fun foo
()
{}
<!
NO_VALUE_FOR_PARAMETER
!>
@my1
<!>
fun foo2
()
{}
@my1
(
2
)
fun foo3
()
{}
@my2
()
fun foo4
()
{}
@my2
fun foo41
()
{}
@my2
(
2
)
fun foo42
()
{}