rust/tests/ui/consts/const-unsized.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
629 B
Rust
Raw Normal View History

use std::fmt::Debug;
2019-05-28 18:46:13 +00:00
const CONST_0: dyn Debug + Sync = *(&0 as &(dyn Debug + Sync));
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
//~| ERROR the size for values of type
const CONST_FOO: str = *"foo";
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
//~| ERROR the size for values of type
2019-05-28 18:46:13 +00:00
static STATIC_1: dyn Debug + Sync = *(&1 as &(dyn Debug + Sync));
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
//~| ERROR the size for values of type
static STATIC_BAR: str = *"bar";
2018-07-10 21:10:13 +00:00
//~^ ERROR the size for values of type
//~| ERROR the size for values of type
fn main() {
println!("{:?} {:?} {:?} {:?}", &CONST_0, &CONST_FOO, &STATIC_1, &STATIC_BAR);
}