2024-02-16 20:02:50 +00:00
|
|
|
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
|
//@ aux-build:test_macro.rs
|
|
|
|
|
//@ compile-flags:--test
|
2018-08-30 13:39:32 -07:00
|
|
|
|
|
|
|
|
#[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() {}
|