Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
compiler
/
testData
/
codegen
/
box
/
delegation
/
nestedNameClash2.kt
blob: 1ca1f756968198b6af69b9f125ef32a00798d029 [
file
]
// 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
}