]> git.lizzy.rs Git - rust.git/blob - src/test/ui/old-suffixes-are-really-forbidden.stderr
Rollup merge of #61207 - taiki-e:arbitrary_self_types-lifetime-elision-2, r=Centril
[rust.git] / src / test / ui / old-suffixes-are-really-forbidden.stderr
1 error: invalid suffix `is` for integer literal
2   --> $DIR/old-suffixes-are-really-forbidden.rs:2:13
3    |
4 LL |     let a = 1_is;
5    |             ^^^^ invalid suffix `is`
6    |
7    = help: the suffix must be one of the integral types (`u32`, `isize`, etc)
8
9 error: invalid suffix `us` for integer literal
10   --> $DIR/old-suffixes-are-really-forbidden.rs:3:13
11    |
12 LL |     let b = 2_us;
13    |             ^^^^ invalid suffix `us`
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