mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
9 lines
117 B
Kotlin
Vendored
9 lines
117 B
Kotlin
Vendored
import kotlin.test.assertEquals
|
|
|
|
class A
|
|
|
|
fun box(): String {
|
|
assertEquals("<init>", ::A.name)
|
|
return "OK"
|
|
}
|