Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
macro-reexport-removed.rs
blob: 4a054686d77677a4b1211fdb52393e9cfd3b15c6 [
file
] [
log
] [
blame
]
//@ aux-build:two_macros.rs
#![
feature
(
macro_reexport
)]
//~ ERROR feature has been removed
#[
macro_reexport
(
macro_one
)]
//~ ERROR cannot find attribute `macro_reexport` in this scope
extern
crate two_macros
;
fn
main
()
{}