Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/visibility/InternalTraitMembersInherited.kt
T
2015-05-12 19:43:17 +02:00

15 lines
212 B
Kotlin
Vendored

package test
interface 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 {
}