Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
traits
/
abstractClassWithFakeOverride.kt
blob: dd2159e74b364c068e94792591db91fb062f0777 [
file
]
interface
A
{
fun foo
():
String
=
"Fail"
}
abstract
class
B
:
A
{
abstract
override
fun foo
():
String
}
abstract
class
C
:
B
()
class
D
:
C
()
{
override
fun foo
():
String
=
"OK"
}
fun box
()
=
D
().
foo
()