Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/genericSet.kt
T
2016-01-22 16:36:57 +03:00

8 lines
153 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 = <!DEBUG_INFO_SMARTCAST!>x<!>
}
}