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