Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
macros
/
macro-reexport-removed.rs
blob: 874c94d08e06adb326f0d32f02464d9aae883d0c [
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
()
{}