Sign in
android
/
toolchain
/
rustc
/
809ee4ad5082233770316fd4303aafde8eaebcb9
/
.
/
src
/
test
/
ui
/
issues
/
issue-29084.rs
blob: 86b348d8285979b0801dc822f6bea281a895dac6 [
file
]
macro_rules
!
foo
{
(
$d
:
expr
)
=>
{{
fn
bar
(
d
:
u8
)
{
}
bar
(&
mut
$d
);
//~^ ERROR mismatched types
//~| expected u8, found &mut u8
//~| expected type `u8`
//~| found type `&mut u8`
}}
}
fn
main
()
{
foo
!(
0u8
);
//~^ in this expansion of foo!
}