fc307da383
#KT-19012 Fixed #KT-19017 Fixed #KT-19036 Fixed #KT-19039 Fixed #KT-19104 Fixed #KT-19106 Fixed
11 lines
177 B
Kotlin
Vendored
11 lines
177 B
Kotlin
Vendored
// FLOW: OUT
|
|
|
|
fun f1(param: String){
|
|
val a = "param = $param"
|
|
}
|
|
|
|
fun main(args: Array<String>) {
|
|
val <caret>hello = "Hello"
|
|
println("hello = $hello")
|
|
f1(hello)
|
|
} |