fun test() { class Test{ fun get(fn: (i: Int) -> Int) : Int = 0 } val test = Test() test.get() { i -> i } }