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