There is no exception inside `f`, because `T` is e...
# announcements
o
There is no exception inside
f
, because
T
is erased to
Any
and basically you have
f(x: Any?): Any? = x as? Any
so there is no problem there