Files
kotlin/compiler/testData/loadJava/compiledKotlin/visibility/InternalTraitMembersInherited.kt
2013-12-17 20:28:59 +04:00

15 lines
208 B
Kotlin

package test
trait A {
internal open fun f() : Int = 0
internal open val v : Int
get() = 0
public var p : Int
get() = 5
internal set(value) {
}
}
class B : A {
}