about summary refs log tree commit diff
path: root/tests/ui/layout/valid_range_oob.rs
blob: df816e7406634d7ecf0ee4da99fb6b4ae4d349fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ failure-status: 101
//@ normalize-stderr: "note: .*\n\n" -> ""
//@ normalize-stderr: "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() {}