mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-15 15:53:36 +00:00
7 lines
132 B
Kotlin
Vendored
7 lines
132 B
Kotlin
Vendored
import kotlin.test.assertEquals
|
|
|
|
fun box(): String {
|
|
assertEquals("Deprecated", Deprecated::class.simpleName)
|
|
|
|
return "OK"
|
|
} |