Files
kotlin-fork/idea/testData/slicer/outflow/docCommentRefs2.kt
T
2020-04-18 01:25:01 +03:00

12 lines
112 B
Kotlin
Vendored

// FLOW: OUT
val String.<caret>foo: Int
get() = 10
/**
* Uses [foo]
*/
fun bar() {
val v = "".foo
}