Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
fun
/
PropagateDeepSubclass.kt
blob: 278978992c12850406b0a589f6dc862bd4bd3571 [
file
] [
log
] [
blame
]
package
test
interface
A
{
fun foo
()
{}
fun bar
()
{}
}
open
class
B
:
A
{
}
class
C
:
B
()
{
override
fun bar
()
{}
}