rust/tests/ui/proc-macro/attributes-on-definitions.rs
2024-11-27 07:18:25 -08:00

12 lines
284 B
Rust

//@ check-pass
//@ proc-macro: attributes-on-definitions.rs
#![forbid(unsafe_code)]
extern crate attributes_on_definitions;
attributes_on_definitions::with_attrs!();
//~^ WARN use of deprecated
// No errors about the use of unstable and unsafe code inside the macro.
fn main() {}