2025-08-23 19:42:14 +02:00
|
|
|
#![deny(unused)]
|
|
|
|
|
|
|
|
|
|
#[crate_name = concat !()]
|
2025-08-23 19:45:00 +02:00
|
|
|
//~^ ERROR crate-level attribute should be an inner attribute
|
2025-08-23 19:42:14 +02:00
|
|
|
macro_rules! a {
|
|
|
|
|
//~^ ERROR unused macro definition
|
|
|
|
|
() => {};
|
|
|
|
|
}
|
|
|
|
|
fn main() {}
|