Files
kotlin-fork/compiler/testData/loadJava/compiledKotlinWithStdlib/annotations/parameters/EnumConstructor.kt
T
Mikhail Glukhikh d3648bce0c Run LoadJava.CompiledKotlin test group with stdlib if some enum is inside
This commit makes compiler tests working similarly to ResolveByStub IDE tests.
2022-08-19 10:08:11 +00:00

7 lines
103 B
Kotlin
Vendored

package test
annotation class A
annotation class B
enum class E(@[A] val x: String, @[B] val y: Int)