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