2022-04-07 18:06:53 -07:00
|
|
|
// 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) {
|
2023-03-11 21:18:45 +00:00
|
|
|
//~^ `dyn*` trait objects are experimental
|
2022-04-07 18:06:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|