897854b3dc
#KT-6671 fixed
8 lines
232 B
Kotlin
Vendored
8 lines
232 B
Kotlin
Vendored
package h
|
|
|
|
public class MyClass<S, T>(<!UNUSED_PARAMETER!>param<!>: MyClass<S, T>) {
|
|
fun test() {
|
|
val result: MyClass<Any, Any>? = null
|
|
MyClass<S, Any>(result <!CAST_NEVER_SUCCEEDS!>as<!> MyClass<S, Any>)
|
|
}
|
|
} |