Fix modifier order in generated overriden functions
Fixes #KT-21600
This commit is contained in:
committed by
Alexander Udalov
parent
99be75cbfc
commit
8bc020f31b
+2
-2
@@ -2,9 +2,9 @@ package
|
||||
|
||||
public inline fun </*0*/ T, /*1*/ U, /*2*/ V> inlineFunWithInvoke(/*0*/ s: (p: T) -> U): kotlin.Unit
|
||||
public inline fun </*0*/ T, /*1*/ U, /*2*/ V, /*3*/ W> inlineFunWithInvoke(/*0*/ s: (p: T, l: U) -> V, /*1*/ ext: T.(p: U, l: V) -> W): kotlin.Unit
|
||||
public operator inline fun </*0*/ T, /*1*/ U> ((T) -> U).component1(): kotlin.Int
|
||||
public inline operator fun </*0*/ T, /*1*/ U> ((T) -> U).component1(): kotlin.Int
|
||||
public operator fun </*0*/ T, /*1*/ U, /*2*/ V> ((T, U) -> V).component1(): kotlin.Int
|
||||
public operator fun </*0*/ T, /*1*/ U, /*2*/ V, /*3*/ W> (T.(U, V) -> W).component1(): kotlin.Int
|
||||
public operator inline fun </*0*/ T, /*1*/ U> ((T) -> U).component2(): kotlin.Int
|
||||
public inline operator fun </*0*/ T, /*1*/ U> ((T) -> U).component2(): kotlin.Int
|
||||
public operator fun </*0*/ T, /*1*/ U, /*2*/ V> ((T, U) -> V).component2(): kotlin.Int
|
||||
public operator fun </*0*/ T, /*1*/ U, /*2*/ V, /*3*/ W> (T.(U, V) -> W).component2(): kotlin.Int
|
||||
|
||||
Reference in New Issue
Block a user