0a2348e595
We just had no tests checking that debugger can properly show values of string-typed variables. This commit adds such a test.
11 lines
220 B
Kotlin
Vendored
11 lines
220 B
Kotlin
Vendored
// KIND: STANDALONE_LLDB
|
|
// LLDB_TRACE: canInspectStrings.txt
|
|
fun main(args: Array<String>) {
|
|
val a = "string literal"
|
|
val b = buildString {
|
|
append("dynamic ")
|
|
append("string")
|
|
}
|
|
return
|
|
}
|