Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
attributes
/
proc-macro-unsafe.rs
blob: 7849df8256098e156170f9647c6beb87cb604b8c [
file
] [
log
] [
blame
] [
edit
]
//@ proc-macro: external-macro-use.rs
extern
crate external_macro_use
;
#[
unsafe
(
external_macro_use
::
a
)]
//~^ ERROR unnecessary `unsafe` on safe attribute
fn
f
()
{}
fn
main
()
{}