mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
16 lines
407 B
Rust
16 lines
407 B
Rust
|
//@ failure-status: 101
|
||
|
//@ normalize-stderr-test "note: .*\n\n" -> ""
|
||
|
//@ normalize-stderr-test "thread 'rustc' panicked.*\n" -> ""
|
||
|
//@ rustc-env:RUST_BACKTRACE=0
|
||
|
|
||
|
#![feature(rustc_attrs)]
|
||
|
|
||
|
#[rustc_layout_scalar_valid_range_end(257)]
|
||
|
struct Foo(i8);
|
||
|
|
||
|
// Need to do in a constant, as runtime codegen
|
||
|
// does not compute the layout of `Foo` in check builds.
|
||
|
const FOO: Foo = unsafe { Foo(1) };
|
||
|
|
||
|
fn main() {}
|