Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
debugger
/
smartStepInto
/
propertyGetter.kt
blob: ee0678c43a01a8a0c10e16402150bf6823203900 [
file
] [
log
] [
blame
]
fun foo
()
{
a
+
b
+
c
+
d
<caret>
}
val a
=
1
val b
=
1
get
val c
:
Int
get
()
=
1
val d
:
Int
get
()
{
return
1
}
// EXISTS: getter for c: Int, getter for d: Int