mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
287 B
Rust
10 lines
287 B
Rust
// 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() {}
|