bd38363077
To explicitly specify which test are failing
10 lines
155 B
Plaintext
Vendored
10 lines
155 B
Plaintext
Vendored
// "Use inherited visibility" "true"
|
|
open class A {
|
|
protected open fun run() {}
|
|
}
|
|
|
|
class B : A() {
|
|
<caret>override fun run() {}
|
|
}
|
|
|
|
/* IGNORE_FIR */ |