2025-03-30 00:39:55 +03:00
|
|
|
//@ check-pass
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: test-macros.rs
|
2015-03-22 13:13:15 -07:00
|
|
|
|
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
|
|
|
|
2025-03-30 00:39:55 +03:00
|
|
|
fn main() {}
|