Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
analysis
/
low-level-api-fir
/
testData
/
nonLocalDeclarationAnchors
/
localFunctionInsideSuperEntryCall.kt
blob: 6ff20504d9c1967ce5bb98636121f5d763d90e99 [
file
]
package
one
interface
Interface
{
fun foo
(
param
:
String
)
}
open
class
ClassWithParameter
(
i
:
Interface
)
class
TopLevelClass
:
ClassWithParameter
(
object
:
Interface
{
override
fun foo
(
param
:
String
)
{
}
})