rust/src/test/ui/layout/debug.rs

16 lines
493 B
Rust
Raw Normal View History

2020-03-21 04:07:44 -05:00
// normalize-stderr-test "pref: Align \{\n *pow2: [1-3],\n *\}" -> "pref: $$PREF_ALIGN"
2020-03-10 16:31:27 -05:00
#![feature(never_type, rustc_attrs)]
#![crate_type = "lib"]
#[rustc_layout(debug)]
enum E { Foo, Bar(!, i32, i32) } //~ ERROR: layout debugging
#[rustc_layout(debug)]
struct S { f1: i32, f2: (), f3: i32 } //~ ERROR: layout debugging
#[rustc_layout(debug)]
union U { f1: (i32, i32), f3: i32 } //~ ERROR: layout debugging
2020-03-10 16:31:27 -05:00
#[rustc_layout(debug)]
type Test = Result<i32, i32>; //~ ERROR: layout debugging