Files
kotlin/compiler/testData/loadJava/compiledKotlin/visibility/PropertyInConstructor.kt
2018-07-24 10:52:16 +03:00

15 lines
277 B
Kotlin
Vendored

//ALLOW_AST_ACCESS
package test
open class Base {
protected open val prot: Int = { 1 }()
internal open val int = { 1 }()
public open val pub: Int = { 1 }()
}
class Child(
override val prot: Int,
override val int: Int,
override val pub: Int
) : Base()