summaryrefslogtreecommitdiffstats
path: root/tests/ui/dyn-star/feature-gate-dyn_star.rs
blob: 41eed71cdc30a9696868235d7cca4157a165704a (plain)
1
2
3
4
5
6
7
8
9
// Feature gate test for dyn_star

/// dyn* is not necessarily the final surface syntax (if we have one at all),
/// but for now we will support it to aid in writing tests independently.
pub fn dyn_star_parameter(_: &dyn* Send) {
    //~^ `dyn*` trait objects are experimental
}

fn main() {}