blob: d9700434b51aebf78b24275a21ee8d65eff4b5a9 [file] [log] [blame]
//@ 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() {}