[FIR-TEST] Add new testdata generated after changes in previous commit
This commit is contained in:
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
fun testInvoke() {
|
||||
operator fun Nothing.invoke(): Nothing = this
|
||||
todo()()
|
||||
}
|
||||
|
||||
fun testInvokeWithLambda() {
|
||||
operator fun Nothing.invoke(i: Int, f: () -> Int) = f
|
||||
todo()(1){ 42 }
|
||||
}
|
||||
|
||||
fun todo(): Nothing = throw Exception()
|
||||
Reference in New Issue
Block a user