blob: d2df085942cd39efcb963f93cf8132719ac06b19 [file]
fun test(a: Any?) {
if (a != null) {
a.foo(11)
}
}
fun <T> Any.foo(t: T) = t