Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
aa5987fd3dbfa6d7896d481b336c9f49e48b9179
/
.
/
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
()
{}
}