rust/tests/debuginfo/empty-string.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
714 B
Rust
Raw Normal View History

2024-08-11 13:25:00 -05:00
//@ ignore-windows-gnu: #128981
//@ ignore-android: FIXME(#10381)
//@ compile-flags:-g
// === GDB TESTS ===================================================================================
// gdb-command: run
// gdb-command: print empty_string
// gdb-check:$1 = ""
// gdb-command: print empty_str
// gdb-check:$2 = ""
// === LLDB TESTS ==================================================================================
2024-03-15 14:30:45 -05:00
// lldb-command:run
2024-03-15 14:30:45 -05:00
// lldb-command:fr v empty_string
// lldb-check:[...] empty_string = "" { vec = size=0 }
2024-03-15 14:30:45 -05:00
// lldb-command:fr v empty_str
// lldb-check:[...] empty_str = ""
fn main() {
let empty_string = String::new();
let empty_str = "";
zzz(); // #break
}
fn zzz() {}