Files
kotlin-fork/compiler/testData/codegen/box/reflection/classLiterals/annotationClassLiteral.kt
T

10 lines
150 B
Kotlin
Vendored

// WITH_REFLECT
import kotlin.test.assertEquals
fun box(): String {
assertEquals("Deprecated", Deprecated::class.simpleName)
return "OK"
}