]> git.lizzy.rs Git - rust.git/blob - src/test/ui/dyn-star/feature-gate-dyn_star.rs
Auto merge of #103390 - compiler-errors:metadata-mod-regions, r=eholk
[rust.git] / src / test / ui / dyn-star / feature-gate-dyn_star.rs
1 // Feature gate test for dyn_star
2
3 /// dyn* is not necessarily the final surface syntax (if we have one at all),
4 /// but for now we will support it to aid in writing tests independently.
5 pub fn dyn_star_parameter(_: &dyn* Send) {
6     //~^ dyn* trait objects are unstable
7 }
8
9 fn main() {}