Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/protectedVisibility/protectedPropertyInPrimaryConstructor.kt
T
2021-10-03 17:10:06 +03:00

10 lines
163 B
Kotlin
Vendored

// FIR_IDENTICAL
class Test(protected var prop1: Int = 1) {
protected var prop2: Int = 2
private fun test() {
prop1 = 3
prop2 = 4
}
}