Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
compiler
/
testData
/
resolve
/
delegatedProperty
/
localDelegation.resolve
blob: 3eece029d241e02114d8136730a9bc9cedf87dfd [
file
] [
log
] [
blame
]
~
A
~
class
A
{
~
foo
~
fun foo
()
=
A
()
}
class
B
{
fun bar
()
{
val a
:
Int
by
`A`
A
().
`foo`
foo
()
val b
:
Int
by
`A`
A
()
}
}