blob: 4756661cf41b7318d27fccb2af1c9871de643880 (
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 unstable
}
fn main() {}
|