Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
inner
/
outerSuperClassMember.kt
blob: 1b28c60379f7836586a275e7cd9642daa383cb64 [
file
]
// FIR_IDENTICAL
open
class
Base
{
fun foo
()
{}
}
class
Derived
:
Base
()
{
class
Nested
{
fun bar
()
=
<!
UNRESOLVED_REFERENCE
!>
foo
<!>()
}
}