Fixed testdata.

This commit is contained in:
Stanislav Erokhin
2016-12-16 00:56:13 +03:00
parent ab53978793
commit d7566d84d0
18 changed files with 116 additions and 142 deletions
@@ -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