Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/options/objectLiteral.kt
T

9 lines
137 B
Kotlin
Vendored

// FIR_IDENTICAL
@Target(AnnotationTarget.CLASS)
annotation class Ann
open class My
fun foo(): My {
return (@Ann object: My() {})
}