5afab1ac2b
parameters with bounds/supertypes.
11 lines
123 B
Kotlin
Vendored
11 lines
123 B
Kotlin
Vendored
object A {
|
|
class B
|
|
class C<T>
|
|
}
|
|
|
|
fun box(): String {
|
|
val b = A.B()
|
|
val c = A.C<String>()
|
|
return "OK"
|
|
}
|