2019-05-22 01:09:58 +03:00
|
|
|
//@ aux-build:test-macros.rs
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2016-11-05 20:30:40 +00:00
|
|
|
#![feature(rustc_attrs)]
|
2018-05-14 03:22:52 +03:00
|
|
|
#![warn(unused_extern_crates)]
|
2016-11-05 20:30:40 +00:00
|
|
|
|
2019-05-22 01:09:58 +03:00
|
|
|
extern crate test_macros;
|
2018-05-14 03:22:52 +03:00
|
|
|
//~^ WARN unused extern crate
|
2015-03-06 13:15:54 -08:00
|
|
|
|
2016-11-05 20:30:40 +00:00
|
|
|
#[rustc_error]
|
2019-11-05 22:42:23 +01:00
|
|
|
fn main() {} //~ ERROR fatal error triggered by #[rustc_error]
|