mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
287 B
Plaintext
12 lines
287 B
Plaintext
package test
|
|
|
|
public open class Base : java.lang.Object {
|
|
public constructor Base()
|
|
protected/*protected and package*/ open fun foo(): jet.Unit
|
|
}
|
|
|
|
internal final class Derived : test.Base {
|
|
public constructor Derived()
|
|
protected open override /*1*/ fun foo(): jet.Unit
|
|
}
|