Files
kotlin-fork/plugins/jvm-abi-gen/testData/content/anonymousAnnotationInstantiation/test.kt
T
Steven Schäfer 6d518c8e57 JVM IR: Mark annotation implementation classes as anonymous
And add tests to ensure that annotation implementation classes are
handled correctly in jvm-abi-gen.
2021-08-23 18:25:33 +02:00

8 lines
98 B
Kotlin
Vendored

package test
annotation class A
class Test {
fun anonymousAnnotationInstantiation() = A()
}