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