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