Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
FakeOverrideAbstractAndNonAbstractFun.kt
blob: 51f2766cfe5990e62e01244357f061bc20c84086 [
file
]
// FIR_IDENTICAL
open
class
Ccc
()
{
fun foo
()
=
1
}
interface
Ttt
{
fun foo
():
Int
}
class
Zzz
()
:
Ccc
(),
Ttt