Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
abstractClassMemberNotImplemented.kt.after
blob: 251e19a8fc0c37da3fed7797ccc84da6ef35d89d [
file
] [
log
] [
blame
]
// "Make 'Foo' 'abstract'" "true"
abstract
class
Bar
{
abstract
val i
:
Int
}
abstract
class
<caret>
Foo
:
Bar
()
{}