about summary refs log tree commit diff
path: root/tests/ui/macros/macro-use-bad-args-2.rs
blob: e328b6285d91e4d188242b6b820f8c57b636276e (plain)
1
2
3
4
5
6
#![no_std]

#[macro_use(foo="bar")]  //~ ERROR malformed `macro_use` attribute input
extern crate std;

fn main() {}