Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
}