2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:two_macros.rs
|
2015-01-02 12:50:45 -08:00
|
|
|
|
|
|
|
|
#[macro_use()]
|
2025-10-17 16:46:32 +02:00
|
|
|
//~^ WARN unused attribute
|
2015-01-02 12:50:45 -08:00
|
|
|
extern crate two_macros;
|
|
|
|
|
|
|
|
|
|
pub fn main() {
|
2017-02-06 22:14:38 +10:30
|
|
|
macro_two!();
|
|
|
|
|
//~^ ERROR cannot find macro
|
2015-01-02 12:50:45 -08:00
|
|
|
}
|