Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
nativeTests
/
resolveToDelegatedProperty.kt
blob: 65e7cb4da7ac9050bf3da0e4763a1cb20280ac29 [
file
]
// FIR_IDENTICAL
interface
A
{
val bar
:
String
}
interface
B
:
A
{
override
val bar
:
String
}
abstract
class
C
(
a
:
A
)
:
B
,
A
by
a
fun foo
(
c
:
C
)
{
c
.
bar
}