Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
issue-46438.rs
blob: d78b958463fcb8e14e253ee91d468541fe5738e8 [
file
] [
log
] [
blame
]
macro_rules
!
m
{
(
$my_type
:
ty
)
=>
{
impl
$my_type
for
u8
{}
}
}
trait
Tr
{}
m
!(
Tr
);
m
!(&
'
static
u8
);
//~ ERROR expected a trait, found type
fn
main
()
{}