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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
96 B
Rust
Raw Normal View History

2016-01-20 17:16:59 -06:00
#![no_std]
2015-01-02 14:50:45 -06:00
#[macro_use(foo="bar")] //~ ERROR bad macro import
extern crate std;
fn main() {}