Migrate testdata to new lambda syntax
This commit is contained in:
@@ -2,7 +2,7 @@ fun outer() {
|
||||
fun inner(i: Int) {
|
||||
if (i > 0){
|
||||
{
|
||||
(it: Int) -> inner(0) // <- invocation of literal itself is generated instead
|
||||
it: Int -> inner(0) // <- invocation of literal itself is generated instead
|
||||
}.invoke(1)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user