Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
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