Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
declarationChecks
/
localFunctionNoInheritVisibility.fir.kt
blob: 44a5b20249e93577ce527a247a6df6a0cf1c5fb6 [
file
]
package
d
class
T
{
fun baz
()
=
1
}
<!
WRONG_MODIFIER_TARGET
!>
override
<!>
fun zzz
()
{}
fun foo
(
t
:
T
)
{
<!
WRONG_MODIFIER_TARGET
!>
override
<!>
fun T
.
baz
()
=
2
// was "Visibility is unknown yet exception"
t
.
baz
()
zzz
()
}