2024-08-11 13:25:00 -05:00
|
|
|
//@ ignore-windows-gnu: #128981
|
2019-02-21 19:21:50 -06:00
|
|
|
//@ 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
|
2019-02-21 19:21:50 -06:00
|
|
|
|
2024-03-15 14:30:45 -05:00
|
|
|
// lldb-command:fr v empty_string
|
2024-03-10 08:55:58 -05:00
|
|
|
// lldb-check:[...] empty_string = "" { vec = size=0 }
|
2019-02-21 19:21:50 -06:00
|
|
|
|
2024-03-15 14:30:45 -05:00
|
|
|
// lldb-command:fr v empty_str
|
2024-04-28 16:02:32 -05:00
|
|
|
// lldb-check:[...] empty_str = ""
|
2019-02-21 19:21:50 -06:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let empty_string = String::new();
|
|
|
|
|
|
|
|
let empty_str = "";
|
|
|
|
|
|
|
|
zzz(); // #break
|
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() {}
|