a79398fa00
#KT-4890 In Progress #KT-5002 Fixed
12 lines
274 B
Plaintext
12 lines
274 B
Plaintext
package test
|
|
|
|
public open class Base {
|
|
public constructor Base()
|
|
protected/*protected and package*/ open fun foo(): kotlin.Unit
|
|
}
|
|
|
|
internal final class Derived : test.Base {
|
|
public constructor Derived()
|
|
protected open override /*1*/ fun foo(): kotlin.Unit
|
|
}
|