Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
macro-use-undef.rs
blob: 8e903927565c4aff25262d8784cce5d5f18eca5a [
file
] [
log
] [
blame
]
//@ aux-build:two_macros.rs
#[
macro_use
(
macro_two
,
no_way
)]
//~ ERROR imported macro not found
extern
crate two_macros
;
pub
fn
main
()
{
macro_two
!();
}