blob: 782a39422362b5ee7a6be6ef59e26202e00a9908 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Test for unsafe attributes generated by a proc-macro.
// See https://github.com/rust-lang/rust/issues/132906
//@ revisions: edition2021 edition2024
//@ check-pass
//@[edition2021] edition:2021
//@[edition2024] edition:2024
//@[edition2024] compile-flags: -Zunstable-options
//@ aux-crate: unsafe_attributes_pm=unsafe-attributes-pm.rs
unsafe_attributes_pm::missing_unsafe!();
unsafe_attributes_pm::macro_rules_missing_unsafe!();
make_fn!();
fn main() {}
|