fun test() { class Test{ fun get(a: Int, b: Int, fn: (i: Int) -> Int) : Int = 0 } val test = Test() test.get(1, 2) { i -> i } }