Skip to content

Commit

Permalink
Test diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
jseyfried committed May 21, 2016
1 parent ba8b932 commit 3c421ac
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/test/compile-fail/macro-error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Check that we report errors at macro definition, not expansion.
#![feature(type_macros)]

macro_rules! foo {
($a:expr) => $a; //~ ERROR macro rhs must be delimited
}

fn main() {
foo!(0);
foo!(0); // Check that we report errors at macro definition, not expansion.

let _: cfg!(foo) = (); //~ ERROR non-type macro in type position
derive!(); //~ ERROR `derive` can only be used in attributes
}

0 comments on commit 3c421ac

Please sign in to comment.