about summary refs log tree commit diff
path: root/tests/ui/traits/alias/not-a-marker.rs
blob: 633cc60554da713bd014a01bb435b2be4b146ba4 (plain)
1
2
3
4
5
6
7
#![feature(trait_alias, marker_trait_attr)]

#[marker]
//~^ ERROR attribute cannot be used on
trait Foo = Send;

fn main() {}