diff options
Diffstat (limited to 'tests/ui/macros/issue-42954.fixed')
-rw-r--r-- | tests/ui/macros/issue-42954.fixed | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/macros/issue-42954.fixed b/tests/ui/macros/issue-42954.fixed new file mode 100644 index 000000000..a73054c92 --- /dev/null +++ b/tests/ui/macros/issue-42954.fixed @@ -0,0 +1,14 @@ +// 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); +} |