mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-27 00:21:29 +00:00
7 lines
168 B
Plaintext
7 lines
168 B
Plaintext
package test
|
|
|
|
public open class ProtectedPackageFun {
|
|
public constructor ProtectedPackageFun()
|
|
protected/*protected and package*/ open fun foo(): kotlin.Unit
|
|
}
|