]> git.lizzy.rs Git - rust.git/blob - src/test/debuginfo/trait-pointers.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / debuginfo / trait-pointers.rs
1 // Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // min-lldb-version: 310
12
13 // compile-flags:-g
14 // gdb-command:run
15 // lldb-command:run
16
17 #![allow(unused_variables)]
18 #![feature(box_syntax)]
19 #![feature(omit_gdb_pretty_printer_section)]
20 #![omit_gdb_pretty_printer_section]
21
22 trait Trait {
23     fn method(&self) -> isize { 0 }
24 }
25
26 struct Struct {
27     a: isize,
28     b: f64
29 }
30
31 impl Trait for Struct {}
32
33 // There is no real test here yet. Just make sure that it compiles without crashing.
34 fn main() {
35     let stack_struct = Struct { a:0, b: 1.0 };
36     let reference: &Trait = &stack_struct as &Trait;
37     let unique: Box<Trait> = box Struct { a:2, b: 3.0 } as Box<Trait>;
38 }