5 lines
74 B
Kotlin
Vendored
5 lines
74 B
Kotlin
Vendored
fun useA() {
|
|
var b: A<B> = A(B())
|
|
var c: A<C> = A(C())
|
|
c = b
|
|
} |