Fixed incorrect test
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user