blob: b1c2a000d4a58e7cb3913eea6f2d425fd5ace9d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// compile-pass
// aux-build:test_macro.rs
// compile-flags:--test
#[macro_use] extern crate test_macro;
#[test]
fn foo(){}
macro_rules! test { () => () }
#[test]
fn bar() {}
|