summaryrefslogtreecommitdiffstats
path: root/tests/ui/dyn-star/const-and-static.rs
blob: 551b072abfab87721c2f12704a140e35245fa9d0 (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass

#![feature(dyn_star)]
//~^ WARN the feature `dyn_star` is incomplete

const C: dyn* Send + Sync = &();

static S: dyn* Send + Sync = &();

fn main() {}