Files
kotlin-fork/idea/testData/slicer/outflow/usagesInTemplates.kt
T

11 lines
176 B
Kotlin
Vendored

// FLOW: OUT
fun f1(param: String){
val a = "param = $param"
}
fun main(args: Array<String>) {
val <caret>hello = "Hello"
val v = "hello = $hello"
f1(hello)
}