Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/genericSet.fir.kt
T

8 lines
126 B
Kotlin
Vendored

class Wrapper<T>(var x: T)
inline fun <reified T> change(w: Wrapper<T>, x: Any?) {
if (x is T) {
w.x = x
}
}