summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/findUsages/kotlin/findPropertyUsages/kotlinMultiRefInImport.0.kt
blob: 1b82adaed51738e7da2f72483b1d8bc516ec9f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtProperty
// OPTIONS: usages
package server

fun foo() {

}

val <caret>foo: Int = 1

val Int.foo: Int get() = 2