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

13 lines
146 B
Kotlin
Vendored

// FLOW: OUT
class KotlinClass {
fun <caret>foo(): Int = 10
/**
* Uses [foo]
*/
fun bar() {
val v = foo()
}
}