Simplify macro-highlighting code

This commit is contained in:
Ben S
2015-02-15 13:43:15 +00:00
parent 81197c7d45
commit da342c1b7d
2 changed files with 17 additions and 89 deletions

View File

@@ -106,7 +106,15 @@
// ----------
#[attribute]
#[derive(This, That, Other)]
#![top_level_attribute]
#not_an_attribute
#[macro_use] use this_is_not_an_attribute;
// Macros
// ------
macro_rules! parse {
($thing: expr) => { $thing };
}