]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lexer/error-stage.stderr
697a7c28da16d5743bcd23728fd040ad5383b9a2
[rust.git] / src / test / ui / lexer / error-stage.stderr
1 error: binary float literal is not supported
2   --> $DIR/error-stage.rs:56:5
3    |
4 LL |     0b10.0f32;
5    |     ^^^^^^
6
7 error: binary float literal is not supported
8   --> $DIR/error-stage.rs:68:5
9    |
10 LL |     0b10.0f32;
11    |     ^^^^^^
12
13 error: binary float literal is not supported
14   --> $DIR/error-stage.rs:78:5
15    |
16 LL |     0b10.0f32;
17    |     ^^^^^^
18
19 error: suffixes on string literals are invalid
20   --> $DIR/error-stage.rs:74:5
21    |
22 LL |     "string"any_suffix;
23    |     ^^^^^^^^^^^^^^^^^^ invalid suffix `any_suffix`
24
25 error: invalid width `123` for integer literal
26   --> $DIR/error-stage.rs:75:5
27    |
28 LL |     10u123;
29    |     ^^^^^^
30    |
31    = help: valid widths are 8, 16, 32, 64 and 128
32
33 error: invalid width `123` for float literal
34   --> $DIR/error-stage.rs:76:5
35    |
36 LL |     10.0f123;
37    |     ^^^^^^^^
38    |
39    = help: valid widths are 32 and 64
40
41 error: binary float literal is not supported
42   --> $DIR/error-stage.rs:77:5
43    |
44 LL |     0b10f32;
45    |     ^^^^^^^ not supported
46
47 error: integer literal is too large
48   --> $DIR/error-stage.rs:79:5
49    |
50 LL |     999340282366920938463463374607431768211455999;
51    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
52
53 error: aborting due to 8 previous errors
54