6d518c8e57
And add tests to ensure that annotation implementation classes are handled correctly in jvm-abi-gen.
8 lines
98 B
Kotlin
Vendored
8 lines
98 B
Kotlin
Vendored
package test
|
|
|
|
annotation class A
|
|
|
|
class Test {
|
|
fun anonymousAnnotationInstantiation() = A()
|
|
}
|