Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
substitutions
/
kt4887.kt
blob: f55d9770cd25e3ab25e6afccb137d96df23325ae [
file
]
// FIR_IDENTICAL
package
h
public
class
MyClass
<
S
,
T
>(
param
:
MyClass
<
S
,
T
>)
{
fun test
()
{
val result
:
MyClass
<
Any
,
Any
>?
=
null
MyClass
<
S
,
Any
>(
result
<!
UNCHECKED_CAST
!>
as
MyClass
<
S
,
Any
><!>)
}
}