Files
kotlin-fork/compiler/testData/diagnostics/tests/substitutions/kt4887.fir.kt
T

8 lines
183 B
Kotlin
Vendored

package h
public class MyClass<S, T>(param: MyClass<S, T>) {
fun test() {
val result: MyClass<Any, Any>? = null
MyClass<S, Any>(result as MyClass<S, Any>)
}
}