Files
kotlin-fork/compiler/testData/loadJava/compiledKotlinWithStdlib/annotations/ConstValInMultifileClass.kt
T
2023-05-10 09:01:21 +00:00

9 lines
144 B
Kotlin
Vendored

@file:JvmMultifileClass
@file:JvmName("Test")
package test
annotation class Anno(val value: String)
@Anno(constant)
const val constant = "OK"