Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
navigation
/
implementations
/
DelegatedProperty.kt
blob: 3247ee76e19e10182fcf1722ad9241ab034dc32c [
file
] [
log
] [
blame
]
package
testing
interface
I
{
val
<caret>
p
:
Int
get
()
=
0
}
class
A
(
i
:
I
)
:
I
by
i
class
B
(
i
:
I
)
:
I
by
i
{
override
val p
=
5
}
class
C
(
i
:
I
)
:
I
by
i
// REF: (in testing.B).p