Files
rust/tests/ui/macros/macro-use-bad-args-1.rs

7 lines
116 B
Rust
Raw Normal View History

2016-01-21 12:16:59 +13:00
#![no_std]
#[macro_use(foo(bar))] //~ ERROR malformed `macro_use` attribute input
2015-01-02 12:50:45 -08:00
extern crate std;
fn main() {}