2024-08-11 18:25:00 +00:00
|
|
|
//@ ignore-windows-gnu: #128981
|
2024-02-22 12:10:29 +00:00
|
|
|
//@ ignore-android: FIXME(#10381)
|
|
|
|
//@ compile-flags:-g
|
2019-02-22 01:21:50 +00:00
|
|
|
|
|
|
|
// === 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 19:30:45 +00:00
|
|
|
// lldb-command:run
|
2019-02-22 01:21:50 +00:00
|
|
|
|
2024-03-15 19:30:45 +00:00
|
|
|
// lldb-command:fr v empty_string
|
2024-03-10 13:55:58 +00:00
|
|
|
// lldb-check:[...] empty_string = "" { vec = size=0 }
|
2019-02-22 01:21:50 +00:00
|
|
|
|
2024-03-15 19:30:45 +00:00
|
|
|
// lldb-command:fr v empty_str
|
2024-04-28 21:02:32 +00:00
|
|
|
// lldb-check:[...] empty_str = ""
|
2019-02-22 01:21:50 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let empty_string = String::new();
|
|
|
|
|
|
|
|
let empty_str = "";
|
|
|
|
|
|
|
|
zzz(); // #break
|
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() {}
|