2018-07-11 14:25:29 -07:00
|
|
|
//@ aux-build:macro-use-warned-against.rs
|
|
|
|
|
//@ aux-build:macro-use-warned-against2.rs
|
2020-04-19 17:27:28 -07:00
|
|
|
//@ check-pass
|
2018-07-11 14:25:29 -07:00
|
|
|
|
2018-07-31 15:45:11 -07:00
|
|
|
#![warn(macro_use_extern_crate, unused)]
|
2018-07-11 14:25:29 -07:00
|
|
|
|
2024-06-03 07:17:19 +02:00
|
|
|
#[macro_use] //~ WARN applying the `#[macro_use]` attribute to an `extern crate` item is deprecated
|
2018-07-11 14:25:29 -07:00
|
|
|
extern crate macro_use_warned_against;
|
|
|
|
|
#[macro_use] //~ WARN unused `#[macro_use]`
|
|
|
|
|
extern crate macro_use_warned_against2;
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
foo!();
|
|
|
|
|
}
|