Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
macros
/
issue-42954.rs
blob: 91362946f845a9dfeba3441ef414c2c89a362355 [
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
);
}