]> git.lizzy.rs Git - rust.git/blob - src/test/ui/old-suffixes-are-really-forbidden.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / old-suffixes-are-really-forbidden.stderr
1 error: invalid suffix `is` for numeric literal
2   --> $DIR/old-suffixes-are-really-forbidden.rs:12:13
3    |
4 LL |     let a = 1_is; //~ ERROR invalid suffix
5    |             ^^^^
6    |
7    = help: the suffix must be one of the integral types (`u32`, `isize`, etc)
8
9 error: invalid suffix `us` for numeric literal
10   --> $DIR/old-suffixes-are-really-forbidden.rs:13:13
11    |
12 LL |     let b = 2_us; //~ ERROR invalid suffix
13    |             ^^^^
14    |
15    = help: the suffix must be one of the integral types (`u32`, `isize`, etc)
16
17 error: aborting due to 2 previous errors
18