Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
withLib
/
fakeOverride.kt.after
blob: 005beac569d5d0fb86417e9d4fc5c6c4251a3f85 [
file
] [
log
] [
blame
]
package
test
import
dependency
.
A
public
open
class
B
()
:
A
()
{
}
public
open
class
C
()
:
B
()
{
override
fun foo
()
{
<selection><caret>
super
.
foo
()</
selection
>
}
}