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