]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gate-i128_type2.stderr
Rollup merge of #48259 - tinaun:patch-1, r=alexcrichton
[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[E0601]: main function not found
34
35 error[E0658]: repr with 128-bit type is unstable (see issue #35118)
36   --> $DIR/feature-gate-i128_type2.rs:30:1
37    |
38 LL | / enum A { //~ ERROR 128-bit type is unstable
39 LL | |     A(u64)
40 LL | | }
41    | |_^
42    |
43    = help: add #![feature(repr128)] to the crate attributes to enable
44
45 error: aborting due to 6 previous errors
46
47 You've got a few errors: E0601, E0658
48 If you want more information on an error, try using "rustc --explain E0601"