Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
traits
/
alias
/
not-a-marker.rs
blob: b004b9ff9ae3f8e889a06975038e2769069b3b90 [
file
] [
log
] [
blame
]
#![
feature
(
trait_alias
,
marker_trait_attr
)]
#[
marker
]
//~^ ERROR attribute should be applied to a trait
trait
Foo
=
Send
;
fn
main
()
{}