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