Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
macro
/
trait-non-item-macros.rs
blob: 97fb564bf647958f7d37926e23d388a7beecc84f [
file
] [
log
] [
blame
] [
edit
]
macro_rules
!
bah
{
(
$a
:
expr
)
=>
{
$a
};
//~^ ERROR macro expansion ignores token `2` and any following
}
trait
Bar
{
bah
!(
2
);
}
fn
main
()
{
let
_recovery_witness
:
()
=
0
;
//~ ERROR mismatched types
}