2020-08-23 03:42:19 -07:00
|
|
|
//@ run-pass
|
2024-11-24 17:37:25 -08:00
|
|
|
//@ proc-macro: macro-only-syntax.rs
|
2020-08-23 03:42:19 -07:00
|
|
|
|
|
|
|
extern crate macro_only_syntax;
|
|
|
|
|
|
|
|
#[macro_only_syntax::expect_unsafe_foreign_mod]
|
|
|
|
unsafe extern {
|
|
|
|
type T;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[macro_only_syntax::expect_unsafe_extern_cpp_mod]
|
|
|
|
unsafe extern "C++" {}
|
|
|
|
|
|
|
|
fn main() {}
|