]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/macro_rules-unmatchable-literals.stderr
Rollup merge of #106717 - klensy:typo, r=lcnr
[rust.git] / tests / ui / macros / macro_rules-unmatchable-literals.stderr
1 error: invalid digit for a base 8 literal
2   --> $DIR/macro_rules-unmatchable-literals.rs:6:12
3    |
4 LL |     ( 0o1238 ) => {};
5    |            ^
6
7 error: invalid digit for a base 2 literal
8   --> $DIR/macro_rules-unmatchable-literals.rs:10:11
9    |
10 LL |     ( 0b012 ) => {};
11    |           ^
12
13 error: aborting due to 2 previous errors
14