]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/attrs-after-extern-mod.rs
Add 'src/tools/rustfmt/' from commit '7872306edf2e11a69aaffb9434088fd66b46a863'
[rust.git] / src / test / ui / parser / attrs-after-extern-mod.rs
1 // Make sure there's an error when given `extern { ... #[attr] }`.
2
3 fn main() {}
4
5 extern "C" {
6     #[cfg(stage37)] //~ ERROR expected item after attributes
7 }