Files
kotlin-fork/idea/testData/quickfix/increaseVisibility/invisibleFake/propertyToProtected2.kt.after
T
2017-08-18 15:53:41 +03:00

13 lines
149 B
Plaintext
Vendored

// "Make 'foo' protected" "true"
open class A {
protected val foo = 1
}
open class B : A()
class C : B() {
fun bar() {
foo
}
}