Files
kotlin-fork/compiler/testData/lazyResolve/recursiveComparator/AnnotationOnObject.kt
T

7 lines
131 B
Kotlin

package test
annotation class A(val a: Int = 12, val b: String = "Test", val c: String)
A(a = 12, c = "Hello")
object SomeObject