mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
13 lines
165 B
Kotlin
Vendored
13 lines
165 B
Kotlin
Vendored
// IGNORE_BACKEND: JS, NATIVE
|
|
|
|
// WITH_REFLECT
|
|
|
|
import kotlin.test.assertEquals
|
|
|
|
class A
|
|
|
|
fun box(): String {
|
|
assertEquals("<init>", ::A.name)
|
|
return "OK"
|
|
}
|