replace 'trait' keyword with 'interface' in user-visible messages and code generation tools
This commit is contained in:
@@ -74,14 +74,14 @@ internal final enum class EnumImplementingTraitWithVal : kotlin.Enum<EnumImpleme
|
||||
public final /*synthesized*/ fun values(): kotlin.Array<EnumImplementingTraitWithVal>
|
||||
}
|
||||
|
||||
internal trait T1 {
|
||||
internal interface T1 {
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
internal abstract fun foo(): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
|
||||
internal trait T2 {
|
||||
internal interface T2 {
|
||||
internal abstract val bar: kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
|
||||
Reference in New Issue
Block a user