Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
navigation
/
implementations
/
FunctionOverrideNavigation.kt
blob: 246d3fee72a906b2fe543f38e09b2433756217a0 [
file
] [
log
] [
blame
]
package
testing
open
class
Base
{
open fun
<caret>
test
()
{
}
}
open
class
SubBase
:
Base
()
{
override
fun test
()
{
}
}
class
SubSubBase
:
SubBase
()
{
override
fun test
()
{
}
}
// REF: (in testing.SubBase).test()
// REF: (in testing.SubSubBase).test()