ae3497c6ce
#KT-18985 Fixed
8 lines
227 B
Kotlin
Vendored
8 lines
227 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 <!UNCHECKED_CAST!>as MyClass<S, Any><!>)
|
|
}
|
|
} |