Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
override
/
nothingToOverride
/
addFunctionTrait.kt
blob: e217845f5c7f1ab702c92775651ec76dfce28fed [
file
] [
log
] [
blame
]
// "Add 'abstract fun f()' to 'A'" "true"
interface
A
{
}
class
B
:
A
{
<caret>
override
fun f
()
{}
}