14 lines
135 B
Rust
14 lines
135 B
Rust
|
// compile-pass
|
||
|
// compile-flags:--test
|
||
|
|
||
|
#![deny(warnings)]
|
||
|
|
||
|
macro_rules! foo {
|
||
|
() => (fn foo(){})
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
foo!();
|
||
|
|
||
|
fn main(){}
|