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
@@ -4,9 +4,9 @@ public fun a(): kotlin.Unit
|
||||
public fun consumeInt(/*0*/ i: kotlin.Int): kotlin.Unit
|
||||
public fun consumeString(/*0*/ s: kotlin.String): kotlin.Unit
|
||||
public fun Example.div(/*0*/ other: Example): kotlin.Int
|
||||
public operator infix fun Example.minus(/*0*/ other: Example): kotlin.Int
|
||||
public infix operator fun Example.minus(/*0*/ other: Example): kotlin.Int
|
||||
public fun Example.plus(/*0*/ other: Example): kotlin.Int
|
||||
public operator infix fun Example.times(/*0*/ other: Example): kotlin.Int
|
||||
public infix operator fun Example.times(/*0*/ other: Example): kotlin.Int
|
||||
|
||||
public final class Example {
|
||||
public constructor Example()
|
||||
|
||||
Reference in New Issue
Block a user