mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
12 lines
272 B
Plaintext
Vendored
12 lines
272 B
Plaintext
Vendored
package test
|
|
|
|
public open class Base {
|
|
public constructor Base()
|
|
protected/*protected and package*/ open fun foo(): kotlin.Unit
|
|
}
|
|
|
|
public final class Derived : test.Base {
|
|
public constructor Derived()
|
|
protected open override /*1*/ fun foo(): kotlin.Unit
|
|
}
|