mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
28 lines
595 B
Rust
28 lines
595 B
Rust
// min-lldb-version: 310
|
|
|
|
// compile-flags:-g
|
|
// gdb-command:run
|
|
// lldb-command:run
|
|
|
|
#![allow(unused_variables)]
|
|
#![feature(omit_gdb_pretty_printer_section)]
|
|
#![omit_gdb_pretty_printer_section]
|
|
|
|
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>;
|
|
}
|