Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
declarations
/
fakeOverrideModality.kt
blob: 8a896206089efcef8c9829b2f07e17aea8a3d02d [
file
]
// FIR_IDENTICAL
// TARGET_BACKEND: JVM
open
class
Base
class
Child
:
Base
()
interface
I
{
fun foo
():
Base
}
abstract
class
J
{
abstract
fun foo
():
Child
}
abstract
class
A
:
I
,
J
()