Files
kotlin-fork/compiler/testData/loadJava/compiledKotlinWithStdlib/annotations/ConstValInMultifileClass.kt
T
Dmitriy Novozhilov 6287968511 [FIR Test] Migrate AbstractFirLoadCompiledKotlin to new test infrastructure
Also introduce two different modes for those tests:
- load metadata compiled with K1
- load metadata compiled with K2
2023-04-19 14:33:25 +00:00

12 lines
208 B
Kotlin
Vendored

// IGNORE_FIR_METADATA_LOADING_K2
// Ignore reason: KT-58080
@file:JvmMultifileClass
@file:JvmName("Test")
package test
annotation class Anno(val value: String)
@Anno(constant)
const val constant = "OK"