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