Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegation
/
nestedNameClash2.kt
blob: 8478104a8890ecdf1d53accee4318aef930ed703 [
file
]
// FIR_IDENTICAL
// DUMP_IR
package
second
fun box
():
String
{
val data
=
MyClass
(
object
:
Base
{})
return
data
.
foo
()
}
interface
Base
{
fun foo
():
String
=
"OK"
}
class
MyClass
(
val prop
:
second
.
Base
):
Base
by
prop
{
interface
Base
}