mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
9 lines
122 B
Kotlin
9 lines
122 B
Kotlin
package test
|
|
|
|
trait A {
|
|
internal fun f() : Int
|
|
internal val v : Int
|
|
public var p : Int
|
|
internal set
|
|
}
|