Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
removeRedundantModifier3.kt.after
blob: 2f6b03af29cdf878bab4c7744c9d89010446113b [
file
]
// "Remove redundant 'open' modifier" "true"
abstract
class
B
()
{
abstract
fun foo
()
}
abstract
class
A
()
:
B
()
{
abstract
override
<caret>
fun foo
()
}