Accessor visibilities are now forbidden for abstract properties
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package
|
||||
|
||||
public abstract class My {
|
||||
public constructor My()
|
||||
internal abstract val w: kotlin.Int
|
||||
public abstract var x: kotlin.Int
|
||||
public abstract val y: kotlin.Int
|
||||
protected abstract var z: 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
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
}
|
||||
Reference in New Issue
Block a user