Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
BasicAnnotations.kt
blob: 305ef320dd2cbd16d1fc0d4cbadf5777c3b68fc4 [
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
()
{}