Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
removeRedundantModifier2.kt
blob: 0e158cee4dcbe6f8fd801e464b9f86d1f9defea9 [
file
] [
log
] [
blame
]
// "Remove redundant 'open' modifier" "true"
abstract
class
B
()
{
abstract
fun foo
()
}
abstract
class
A
()
:
B
()
{
abstract
<caret>
open
override
fun foo
()
}