summary refs log tree commit diff
path: root/src/test/compile-fail/macro-outer-attributes.rs
AgeCommit message (Collapse)AuthorLines
2014-03-28Convert most code to new inner attribute syntax.Brian Anderson-1/+1
Closes #2569
2014-03-28syntax: Accept meta matchers in macrosAlex Crichton-2/+2
This removes the `attr` matcher and adds a `meta` matcher. The previous `attr` matcher is now ambiguous because it doesn't disambiguate whether it means inner attribute or outer attribute. The new behavior can still be achieved by taking an argument of the form `#[$foo:meta]` (the brackets are part of the macro pattern). Closes #13067
2014-02-07Added tests to make tidyDerek Guenther-0/+10
2013-10-06Add appropriate #[feature] directives to testsAlex Crichton-0/+2
2013-08-08Allow attributes to appear as macro argumentsNiko Matsakis-0/+19
Fixes #8393