Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
macros
/
issue-42954.fixed
blob: a73054c92570e9ff2b340f3a762a7b1fc198df56 [
file
] [
log
] [
blame
]
// run-rustfix
#![allow(unused_must_use, unused_comparisons)]
macro_rules
!
is_plainly_printable
{
(
$i
:
ident
)
=>
{
(
$i
as
u32
)
<
0
//~ `<` is interpreted as a start of generic arguments
};
}
fn main
()
{
let
c
=
'a'
;
is_plainly_printable
!(
c
);
}