Sign in
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
attributes
/
crate-type-macro-not-found.rs
blob: 901ece48de0a2ee253a685b08a2e9006a105c182 [
file
]
// Tests for the issue in #137589
#[
crate_type
=
foo
!()]
//~^ ERROR cannot find macro `foo` in this scope
macro_rules
!
foo
{
(
$x
:
expr
)
=>
{
"rlib"
}
}
fn
main
()
{}