inline fun foo(i2: Any): T { return i2 as T } fun bar(i1: Int): Int { return foo(i1) } fun main(args: Array) { println(bar(33)) }