Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
hygiene
/
lambda-var-hygiene.rs
blob: bf06765e5dd415c6392c38d26715dd013cccadf2 [
file
] [
log
] [
blame
]
// run-pass
// shouldn't affect evaluation of $ex:
macro_rules
!
bad_macro
{
(
$ex
:
expr
)
=>
({(|
_x
|
{
$ex
})
(
9
)
})
}
fn
takes_x
(
_x
:
isize
)
{
assert_eq
!(
bad_macro
!(
_x
),
8
);
}
fn
main
()
{
takes_x
(
8
);
}