Files
kotlin/compiler/testData/codegen/box/innerNested/nestedClassInObject.kt
Mark Punzalan 5afab1ac2b [FIR] FIR2IR: Populate calls with type arguments and function type
parameters with bounds/supertypes.
2019-11-25 09:37:47 +03:00

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"
}