mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
12 lines
256 B
Plaintext
12 lines
256 B
Plaintext
package test
|
|
|
|
public open class Base {
|
|
public constructor Base()
|
|
public/*package*/ open fun foo(): kotlin.Unit
|
|
}
|
|
|
|
internal final class Derived : test.Base {
|
|
public constructor Derived()
|
|
internal open override /*1*/ fun foo(): kotlin.Unit
|
|
}
|