Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
macro-reexport-removed.rs
blob: 4a054686d77677a4b1211fdb52393e9cfd3b15c6 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}