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