Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
ir
/
irText
/
classes
/
superCalls.kt
blob: bbf87aa2b0cd25dcb5671b2e9bbb45b07dfe4b45 [
file
]
// FIR_IDENTICAL
open
class
Base
{
open fun foo
()
{}
open val bar
:
String
=
""
override
fun hashCode
()
=
super
.
hashCode
()
}
class
Derived
:
Base
()
{
override
fun foo
()
{
super
.
foo
()
}
override
val bar
:
String
get
()
=
super
.
bar
}