Files
kotlin-fork/idea/testData/slicer/outflow/funResultViaCallableRefWithDirectCall.kt
T
Alexey Sedunov d61ddaccb6 Analyze Data Flow: Support callable references
#KT-11994 In Progress
2017-06-09 17:19:18 +03:00

6 lines
82 B
Kotlin
Vendored

// FLOW: OUT
fun test() {
fun bar(n: Int) = <caret>n
val x = (::bar)(1)
}