Fixed incorrect test

This commit is contained in:
Valentin Kipyatkov
2016-10-07 14:57:36 +03:00
parent 968a6cfd04
commit 31a4c6671e
2 changed files with 3 additions and 3 deletions
@@ -5,7 +5,7 @@ annotation class ann
interface Some {
fun f1(): String.() -> Int
fun f2(): @ExtensionFunctionType String.() -> Int
fun f2(): @ExtensionFunctionType() (String.() -> Int)
fun f3(): @ann String.() -> Int
fun f4(): @ExtensionFunctionType @ann String.() -> Int
fun f4(): @ExtensionFunctionType @ann() (String.() -> Int)
}
@@ -5,7 +5,7 @@ public interface Some {
public abstract fun f1(): kotlin.String.() -> kotlin.Int
public abstract fun f2(): kotlin.String.() -> kotlin.Int
public abstract fun f3(): @ann kotlin.String.() -> kotlin.Int
public abstract fun f4(): @ann kotlin.String.() -> kotlin.Int
public abstract fun f4(): @ann() (kotlin.String.() -> kotlin.Int)
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}