2024-02-22 12:10:29 +00:00
|
|
|
//@ ignore-lldb
|
|
|
|
//@ ignore-android: FIXME(#10381)
|
2018-11-07 12:04:40 -07:00
|
|
|
|
2024-02-22 12:10:29 +00:00
|
|
|
//@ compile-flags:-g
|
2014-08-20 12:53:50 +02:00
|
|
|
|
|
|
|
// gdb-command: run
|
|
|
|
|
|
|
|
// gdb-command: print regular_struct
|
2024-08-17 17:31:49 -04:00
|
|
|
// gdb-check:$1 = gdb_pretty_struct_and_enums::RegularStruct {the_first_field: 101, the_second_field: 102.5, the_third_field: false}
|
2014-08-20 12:53:50 +02:00
|
|
|
|
|
|
|
// gdb-command: print empty_struct
|
2024-08-17 17:31:49 -04:00
|
|
|
// gdb-check:$2 = gdb_pretty_struct_and_enums::EmptyStruct
|
2014-08-20 12:53:50 +02:00
|
|
|
|
|
|
|
// gdb-command: print c_style_enum1
|
2024-08-17 17:31:49 -04:00
|
|
|
// gdb-check:$3 = gdb_pretty_struct_and_enums::CStyleEnum::CStyleEnumVar1
|
2014-08-20 12:53:50 +02:00
|
|
|
|
|
|
|
// gdb-command: print c_style_enum2
|
2024-08-17 17:31:49 -04:00
|
|
|
// gdb-check:$4 = gdb_pretty_struct_and_enums::CStyleEnum::CStyleEnumVar2
|
2014-08-20 12:53:50 +02:00
|
|
|
|
|
|
|
// gdb-command: print c_style_enum3
|
2024-08-17 17:31:49 -04:00
|
|
|
// gdb-check:$5 = gdb_pretty_struct_and_enums::CStyleEnum::CStyleEnumVar3
|
2014-08-20 12:53:50 +02:00
|
|
|
|
2015-04-21 21:53:07 -07:00
|
|
|
#![allow(dead_code, unused_variables)]
|
|
|
|
|
2014-08-20 12:53:50 +02:00
|
|
|
struct RegularStruct {
|
2015-03-25 17:06:52 -07:00
|
|
|
the_first_field: isize,
|
2014-08-20 12:53:50 +02:00
|
|
|
the_second_field: f64,
|
|
|
|
the_third_field: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct EmptyStruct;
|
|
|
|
|
|
|
|
enum CStyleEnum {
|
|
|
|
CStyleEnumVar1,
|
|
|
|
CStyleEnumVar2,
|
|
|
|
CStyleEnumVar3,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
|
|
|
let regular_struct = RegularStruct {
|
|
|
|
the_first_field: 101,
|
|
|
|
the_second_field: 102.5,
|
|
|
|
the_third_field: false
|
|
|
|
};
|
|
|
|
|
|
|
|
let empty_struct = EmptyStruct;
|
|
|
|
|
2014-11-06 00:05:53 -08:00
|
|
|
let c_style_enum1 = CStyleEnum::CStyleEnumVar1;
|
|
|
|
let c_style_enum2 = CStyleEnum::CStyleEnumVar2;
|
|
|
|
let c_style_enum3 = CStyleEnum::CStyleEnumVar3;
|
2014-08-20 12:53:50 +02:00
|
|
|
|
2014-10-29 10:13:29 +04:00
|
|
|
zzz(); // #break
|
2014-08-20 12:53:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn zzz() { () }
|