Files
kotlin/compiler/testData/codegen/boxWithStdlib/reflection/classLiterals/annotationClassLiteral.kt
2015-09-04 18:19:31 +03:00

7 lines
132 B
Kotlin
Vendored

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