Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e5523c196e17d8fdbb5635aa785d6c182ed3f821
/
.
/
compiler
/
testData
/
ir
/
irText
/
classes
/
superCallsComposed.kt
blob: 12342d7d593b499deaacccd6d2571902d3aa242d [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
open
class
Base
{
open fun foo
()
{}
open val bar
:
String
=
""
}
interface
BaseI
{
fun foo
()
val bar
:
String
}
class
Derived
:
Base
(),
BaseI
{
override
fun foo
()
{
super
.
foo
()
}
override
val bar
:
String
get
()
=
super
.
bar
}