mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-03 15:52:00 +00:00
7 lines
184 B
Plaintext
7 lines
184 B
Plaintext
package test
|
|
|
|
public open class ProtectedPackageFun : java.lang.Object {
|
|
public constructor ProtectedPackageFun()
|
|
protected/*protected and package*/ open fun foo(): jet.Unit
|
|
}
|