mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-02 00:21:31 +00:00
10 lines
236 B
Plaintext
10 lines
236 B
Plaintext
package test
|
|
|
|
public open class ProtectedPackageConstructor {
|
|
public constructor ProtectedPackageConstructor()
|
|
|
|
protected/*protected static*/ open class Foo {
|
|
protected/*protected and package*/ constructor Foo()
|
|
}
|
|
}
|