fun testInvoke() { fun Nothing.invoke() = this todo()() } fun testInvokeWithLambda() { fun Nothing.invoke(i: Int, f: () -> Int) = f todo()(1){ 42 } } fun todo() = throw Exception()