2016-06-24 03:20:37 +03:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
const CONST_0: dyn Debug + Sync = *(&0 as &(dyn Debug + Sync));
|
2018-07-10 23:10:13 +02: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 03:20:37 +03:00
|
|
|
|
|
|
|
const CONST_FOO: str = *"foo";
|
2018-07-10 23:10:13 +02: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 03:20:37 +03:00
|
|
|
|
2019-05-28 14:46:13 -04:00
|
|
|
static STATIC_1: dyn Debug + Sync = *(&1 as &(dyn Debug + Sync));
|
2018-07-10 23:10:13 +02: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 03:20:37 +03:00
|
|
|
|
|
|
|
static STATIC_BAR: str = *"bar";
|
2018-07-10 23:10:13 +02: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 03:20:37 +03:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("{:?} {:?} {:?} {:?}", &CONST_0, &CONST_FOO, &STATIC_1, &STATIC_BAR);
|
|
|
|
}
|