]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gate-i128_type2.stderr
Rollup merge of #49049 - Centril:fix/flatten-fusediterator, r=bluss
[rust.git] / src / test / ui / feature-gate-i128_type2.stderr
1 error[E0658]: 128-bit type is unstable (see issue #35118)
2   --> $DIR/feature-gate-i128_type2.rs:13:15
3    |
4 LL | fn test1() -> i128 { //~ ERROR 128-bit type is unstable
5    |               ^^^^
6    |
7    = help: add #![feature(i128_type)] to the crate attributes to enable
8
9 error[E0658]: 128-bit type is unstable (see issue #35118)
10   --> $DIR/feature-gate-i128_type2.rs:17:17
11    |
12 LL | fn test1_2() -> u128 { //~ ERROR 128-bit type is unstable
13    |                 ^^^^
14    |
15    = help: add #![feature(i128_type)] to the crate attributes to enable
16
17 error[E0658]: 128-bit type is unstable (see issue #35118)
18   --> $DIR/feature-gate-i128_type2.rs:22:12
19    |
20 LL |     let x: i128 = 0; //~ ERROR 128-bit type is unstable
21    |            ^^^^
22    |
23    = help: add #![feature(i128_type)] to the crate attributes to enable
24
25 error[E0658]: 128-bit type is unstable (see issue #35118)
26   --> $DIR/feature-gate-i128_type2.rs:26:12
27    |
28 LL |     let x: u128 = 0; //~ ERROR 128-bit type is unstable
29    |            ^^^^
30    |
31    = help: add #![feature(i128_type)] to the crate attributes to enable
32
33 error[E0658]: repr with 128-bit type is unstable (see issue #35118)
34   --> $DIR/feature-gate-i128_type2.rs:30:1
35    |
36 LL | / enum A { //~ ERROR 128-bit type is unstable
37 LL | |     A(u64)
38 LL | | }
39    | |_^
40    |
41    = help: add #![feature(repr128)] to the crate attributes to enable
42
43 error: aborting due to 5 previous errors
44
45 For more information about this error, try `rustc --explain E0658`.