Files
kotlin-fork/compiler/testData/resolvedCalls/secondaryConstructors/classWithGenerics2.kt
T
2015-03-11 17:45:23 +03:00

5 lines
76 B
Kotlin
Vendored

class A<T, R> {
constructor(x: T) {}
}
val y = <caret>A<Int, String>(1)