2022-04-30 18:30:11 +02:00
|
|
|
// normalize-stderr-test "pref: Align\([1-8] bytes\)" -> "pref: $$PREF_ALIGN"
|
2021-07-26 17:01:16 -03:00
|
|
|
#![feature(never_type, rustc_attrs, type_alias_impl_trait)]
|
2020-03-10 22:31:27 +01:00
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
2020-03-20 17:48:03 +01:00
|
|
|
#[rustc_layout(debug)]
|
2020-04-06 09:22:48 +02:00
|
|
|
enum E { Foo, Bar(!, i32, i32) } //~ ERROR: layout_of
|
2020-03-20 17:48:03 +01:00
|
|
|
|
|
|
|
#[rustc_layout(debug)]
|
2020-04-06 09:22:48 +02:00
|
|
|
struct S { f1: i32, f2: (), f3: i32 } //~ ERROR: layout_of
|
2020-03-20 17:48:03 +01:00
|
|
|
|
|
|
|
#[rustc_layout(debug)]
|
2020-04-06 09:22:48 +02:00
|
|
|
union U { f1: (i32, i32), f3: i32 } //~ ERROR: layout_of
|
2020-03-10 22:31:27 +01:00
|
|
|
|
|
|
|
#[rustc_layout(debug)]
|
2020-04-06 09:22:48 +02:00
|
|
|
type Test = Result<i32, i32>; //~ ERROR: layout_of
|
2020-04-05 17:07:06 +02:00
|
|
|
|
|
|
|
#[rustc_layout(debug)]
|
2020-04-06 09:22:48 +02:00
|
|
|
type T = impl std::fmt::Debug; //~ ERROR: layout_of
|
2020-04-05 17:07:06 +02:00
|
|
|
|
|
|
|
fn f() -> T {
|
|
|
|
0i32
|
|
|
|
}
|