2019-08-20 21:22:32 +03:00
|
|
|
//@ check-pass
|
|
|
|
//@ aux-build:attributes-on-definitions.rs
|
|
|
|
|
|
|
|
#![forbid(unsafe_code)]
|
|
|
|
|
|
|
|
extern crate attributes_on_definitions;
|
|
|
|
|
|
|
|
attributes_on_definitions::with_attrs!();
|
2020-07-25 13:49:46 -04:00
|
|
|
//~^ WARN use of deprecated
|
2019-08-20 21:22:32 +03:00
|
|
|
// No errors about the use of unstable and unsafe code inside the macro.
|
|
|
|
|
|
|
|
fn main() {}
|