Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inner
/
nestedClassExtendsOuter.kt
blob: 8e451cfed1429d9c46ed6f3ac9ecccde0b866e20 [
file
]
// FIR_IDENTICAL
open
class
Outer
{
class
Nested
:
Outer
()
{
fun bar
()
=
foo
()
fun baz
()
=
super
.
foo
()
}
fun foo
()
=
42
}