blob: 15ab431fe754af5576fbaf600ba08e8635b649f0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// aux-build:test-macros.rs
#![feature(rustc_attrs)]
#![warn(unused_extern_crates)]
extern crate test_macros;
//~^ WARN unused extern crate
#[rustc_error]
fn main() {} //~ ERROR compilation successful
|