2016-06-24 00:20:37 +00:00
|
|
|
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
|
2023-10-25 10:49:24 +00:00
|
|
|
//~| ERROR the size for values of type
|
2016-06-24 00:20:37 +00:00
|
|
|
|
|
|
|
const CONST_FOO: str = *"foo";
|
2018-07-10 21:10:13 +00:00
|
|
|
//~^ ERROR the size for values of type
|
2023-10-25 10:49:24 +00:00
|
|
|
//~| ERROR the size for values of type
|
2016-06-24 00:20:37 +00:00
|
|
|
|
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
|
2023-10-25 10:49:24 +00:00
|
|
|
//~| ERROR the size for values of type
|
2016-06-24 00:20:37 +00:00
|
|
|
|
|
|
|
static STATIC_BAR: str = *"bar";
|
2018-07-10 21:10:13 +00:00
|
|
|
//~^ ERROR the size for values of type
|
2023-10-25 10:49:24 +00:00
|
|
|
//~| ERROR the size for values of type
|
2016-06-24 00:20:37 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("{:?} {:?} {:?} {:?}", &CONST_0, &CONST_FOO, &STATIC_1, &STATIC_BAR);
|
|
|
|
}
|