mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
178 B
Kotlin
Vendored
12 lines
178 B
Kotlin
Vendored
// WITH_REFLECT
|
|
|
|
import kotlin.test.assertEquals
|
|
|
|
class Generic<K, V>
|
|
|
|
fun box(): String {
|
|
val g = Generic::class
|
|
assertEquals("Generic", g.simpleName)
|
|
return "OK"
|
|
}
|