f0f6a252a5
So #KT-19614 Fixed
11 lines
129 B
Plaintext
Vendored
11 lines
129 B
Plaintext
Vendored
// "Make 'foo' protected" "true"
|
|
|
|
open class A {
|
|
protected val foo = 1
|
|
}
|
|
|
|
class B : A() {
|
|
fun bar() {
|
|
foo
|
|
}
|
|
} |