7e9e427d4c
- report errors on implementing methods of Any in interfaces - update testData ~~~ Java 8 override restrictions: interface can't implement a method of 'Any' - update compiler sources
20 lines
837 B
Plaintext
Vendored
20 lines
837 B
Plaintext
Vendored
package
|
|
|
|
public interface IDiamond : ILeft, IRight {
|
|
public open override /*2*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
|
public open override /*2*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
|
public open override /*2*/ fun toString(): kotlin.String
|
|
}
|
|
|
|
public interface ILeft {
|
|
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
|
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
|
public abstract override /*1*/ fun toString(): kotlin.String
|
|
}
|
|
|
|
public interface IRight {
|
|
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
|
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
|
public abstract override /*1*/ fun toString(): kotlin.String
|
|
}
|