Files
kotlin-fork/native/native.tests/testData/lldb/kt47198WithBody.kt
T
2024-01-26 15:54:41 +00:00

11 lines
132 B
Kotlin
Vendored

// KIND: STANDALONE_LLDB
// FIR_IDENTICAL
// FILE: kt47198.kt
fun foo(a:Int){
print("a: ${'$'}a")
}
fun main() {
foo(33)
}