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