Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
annotations
/
AnnotationOnObject.kt
blob: 32a91ac5b6783396bb85b3fadef4900affa881c6 [
file
]
// FIR_IDENTICAL
package
test
annotation
class
A
(
val a
:
Int
=
12
,
val b
:
String
=
"Test"
,
val c
:
String
)
@A
(
a
=
12
,
c
=
"Hello"
)
object
SomeObject