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