rust/tests/debuginfo/static-method-on-struct-and...

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

79 lines
1.4 KiB
Rust
Raw Normal View History

//@ compile-flags:-g
// === GDB TESTS ===================================================================================
// gdb-command:run
// STRUCT
// gdb-command:print arg1
// gdb-check:$1 = 1
// gdb-command:print arg2
// gdb-check:$2 = 2
// gdb-command:continue
// ENUM
// gdb-command:print arg1
// gdb-check:$3 = -3
// gdb-command:print arg2
// gdb-check:$4 = 4.5
// gdb-command:print arg3
// gdb-check:$5 = 5
// gdb-command:continue
// === LLDB TESTS ==================================================================================
// lldb-command:run
// STRUCT
// lldb-command:v arg1
2024-08-19 05:00:33 +08:00
// lldb-check:[...] 1
// lldb-command:v arg2
2024-08-19 05:00:33 +08:00
// lldb-check:[...] 2
// lldb-command:continue
// ENUM
// lldb-command:v arg1
2024-08-19 05:00:33 +08:00
// lldb-check:[...] -3
// lldb-command:v arg2
2024-08-19 05:00:33 +08:00
// lldb-check:[...] 4.5
// lldb-command:v arg3
2024-08-19 05:00:33 +08:00
// lldb-check:[...] 5
// lldb-command:continue
#![feature(omit_gdb_pretty_printer_section)]
#![omit_gdb_pretty_printer_section]
struct Struct {
x: isize
}
impl Struct {
fn static_method(arg1: isize, arg2: isize) -> isize {
zzz(); // #break
arg1 + arg2
}
}
enum Enum {
Variant1 { x: isize },
Variant2,
Variant3(f64, isize, char),
}
impl Enum {
fn static_method(arg1: isize, arg2: f64, arg3: usize) -> isize {
zzz(); // #break
arg1
}
}
fn main() {
Struct::static_method(1, 2);
Enum::static_method(-3, 4.5, 5);
}
fn zzz() {()}