blob: 187d1be23640860981624a800c936f38f3d8ef25 [file] [log] [blame] [edit]
//@ check-pass
//@ aux-build: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() {}