Fixed testdata.
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
package test
|
||||
|
||||
fun test1(): suspend () -> Unit = null!!
|
||||
fun test2(): suspend (Int, String) -> Int = null!!
|
||||
fun test3(): suspend Int.(String) -> Int = null!!
|
||||
fun test4(): List<suspend () -> Unit> = null!!
|
||||
fun test5(): suspend (suspend () -> Unit) -> Unit = null!!
|
||||
fun test2(): suspend Int.() -> Int = null!!
|
||||
fun test3(): List<suspend () -> Unit> = null!!
|
||||
fun test4(): suspend () -> (suspend () -> Unit) = null!!
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
package test
|
||||
|
||||
public fun test1(): suspend () -> kotlin.Unit
|
||||
public fun test2(): suspend (kotlin.Int, kotlin.String) -> kotlin.Int
|
||||
public fun test3(): suspend kotlin.Int.(kotlin.String) -> kotlin.Int
|
||||
public fun test4(): kotlin.collections.List<suspend () -> kotlin.Unit>
|
||||
public fun test5(): suspend (suspend () -> kotlin.Unit) -> kotlin.Unit
|
||||
public fun test2(): suspend kotlin.Int.() -> kotlin.Int
|
||||
public fun test3(): kotlin.collections.List<suspend () -> kotlin.Unit>
|
||||
public fun test4(): suspend () -> suspend () -> kotlin.Unit
|
||||
|
||||
Reference in New Issue
Block a user