rust/tests/debuginfo/trait-pointers.rs
bjorn3 ae2f8d9216 Remove the omit_gdb_pretty_printer_section attribute
Disabling loading of pretty printers in the debugger itself is more
reliable. Before this commit the .gdb_debug_scripts section couldn't be
included in dylibs or rlibs as otherwise there is no way to disable the
section anymore without recompiling the entire standard library.
2025-08-01 20:04:59 +00:00

25 lines
521 B
Rust

//@ compile-flags:-g
//@ disable-gdb-pretty-printers
// gdb-command:run
// lldb-command:run
#![allow(unused_variables)]
trait Trait {
fn method(&self) -> isize { 0 }
}
struct Struct {
a: isize,
b: f64
}
impl Trait for Struct {}
// There is no real test here yet. Just make sure that it compiles without crashing.
fn main() {
let stack_struct = Struct { a:0, b: 1.0 };
let reference: &Trait = &stack_struct as &Trait;
let unique: Box<Trait> = Box::new(Struct { a:2, b: 3.0 }) as Box<Trait>;
}