Files
kotlin-fork/compiler/testData/diagnostics/tests/cast/bare/NullableAs.kt
T
2013-09-13 22:41:06 +02:00

7 lines
98 B
Kotlin

trait Tr<T>
trait G<T> : Tr<T>
fun test(tr: Tr<String>?) {
val v = tr as G
v: G<String>
}