8 lines
126 B
Kotlin
Vendored
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
|
|
}
|
|
}
|