2019-07-02 16:30:28 -05:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2018-08-30 15:39:32 -05:00
|
|
|
// aux-build:test_macro.rs
|
|
|
|
// compile-flags:--test
|
|
|
|
|
|
|
|
#[macro_use] extern crate test_macro;
|
|
|
|
|
|
|
|
#[test]
|
2018-08-30 15:40:33 -05:00
|
|
|
fn foo(){}
|
2018-09-05 14:43:11 -05:00
|
|
|
|
|
|
|
macro_rules! test { () => () }
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bar() {}
|