mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-01 06:18:30 +00:00
8 lines
126 B
Rust
8 lines
126 B
Rust
#![feature(trait_alias, marker_trait_attr)]
|
|
|
|
#[marker]
|
|
//~^ ERROR attribute cannot be used on
|
|
trait Foo = Send;
|
|
|
|
fn main() {}
|