rust/tests/debuginfo/borrowed-c-style-enum.rs

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

50 lines
1.0 KiB
Rust
Raw Normal View History

//@ compile-flags:-g
// === GDB TESTS ===================================================================================
// gdb-command:run
// gdb-command:print *the_a_ref
2024-08-17 16:31:49 -05:00
// gdb-check:$1 = borrowed_c_style_enum::ABC::TheA
// gdb-command:print *the_b_ref
2024-08-17 16:31:49 -05:00
// gdb-check:$2 = borrowed_c_style_enum::ABC::TheB
// gdb-command:print *the_c_ref
2024-08-17 16:31:49 -05:00
// gdb-check:$3 = borrowed_c_style_enum::ABC::TheC
// === LLDB TESTS ==================================================================================
// lldb-command:run
// lldb-command:v *the_a_ref
2024-08-18 16:00:33 -05:00
// lldb-check:[...] TheA
// lldb-command:v *the_b_ref
2024-08-18 16:00:33 -05:00
// lldb-check:[...] TheB
// lldb-command:v *the_c_ref
2024-08-18 16:00:33 -05:00
// lldb-check:[...] TheC
2014-10-27 17:37:07 -05:00
#![allow(unused_variables)]
#![feature(omit_gdb_pretty_printer_section)]
#![omit_gdb_pretty_printer_section]
2013-08-17 10:37:42 -05:00
enum ABC { TheA, TheB, TheC }
fn main() {
let the_a = ABC::TheA;
let the_a_ref: &ABC = &the_a;
let the_b = ABC::TheB;
let the_b_ref: &ABC = &the_b;
let the_c = ABC::TheC;
let the_c_ref: &ABC = &the_c;
zzz(); // #break
}
2013-08-17 10:37:42 -05:00
fn zzz() {()}