blob: cbb64261a66c788424332e01aec340a098aada48 [file] [log] [blame] [edit]
//@ check-pass
#![feature(dyn_star)]
//~^ WARN the feature `dyn_star` is incomplete
const C: dyn* Send + Sync = &();
static S: dyn* Send + Sync = &();
fn main() {}