8 lines
127 B
Rust
8 lines
127 B
Rust
#![no_std]
|
|
|
|
#[allow(unused_extern_crates)]
|
|
#[macro_use(foo="bar")] //~ ERROR bad macro import
|
|
extern crate std;
|
|
|
|
fn main() {}
|