5 lines
76 B
Kotlin
Vendored
5 lines
76 B
Kotlin
Vendored
class A<T, R> {
|
|
constructor(x: T) {}
|
|
}
|
|
|
|
val y = <caret>A<Int, String>(1) |