|
| 1 | +error[E0658]: the type `f128` is unstable |
| 2 | + --> $DIR/feature-gate-f128.rs:7:10 |
| 3 | + | |
| 4 | +LL | const A: f128 = 10.0; |
| 5 | + | ^^^^ |
| 6 | + | |
| 7 | + = note: see issue #116909 <https://github.com/rust-lang/rust/issues/116909> for more information |
| 8 | + = help: add `#![feature(f128)]` to the crate attributes to enable |
| 9 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 10 | + |
| 11 | +error[E0658]: the type `f128` is unstable |
| 12 | + --> $DIR/feature-gate-f128.rs:10:12 |
| 13 | + | |
| 14 | +LL | let a: f128 = 100.0; |
| 15 | + | ^^^^ |
| 16 | + | |
| 17 | + = note: see issue #116909 <https://github.com/rust-lang/rust/issues/116909> for more information |
| 18 | + = help: add `#![feature(f128)]` to the crate attributes to enable |
| 19 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 20 | + |
| 21 | +error[E0658]: the type `f128` is unstable |
| 22 | + --> $DIR/feature-gate-f128.rs:15:11 |
| 23 | + | |
| 24 | +LL | fn foo(a: f128) {} |
| 25 | + | ^^^^ |
| 26 | + | |
| 27 | + = note: see issue #116909 <https://github.com/rust-lang/rust/issues/116909> for more information |
| 28 | + = help: add `#![feature(f128)]` to the crate attributes to enable |
| 29 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 30 | + |
| 31 | +error[E0658]: the type `f128` is unstable |
| 32 | + --> $DIR/feature-gate-f128.rs:18:8 |
| 33 | + | |
| 34 | +LL | a: f128, |
| 35 | + | ^^^^ |
| 36 | + | |
| 37 | + = note: see issue #116909 <https://github.com/rust-lang/rust/issues/116909> for more information |
| 38 | + = help: add `#![feature(f128)]` to the crate attributes to enable |
| 39 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 40 | + |
| 41 | +error[E0658]: the type `f128` is unstable |
| 42 | + --> $DIR/feature-gate-f128.rs:11:13 |
| 43 | + | |
| 44 | +LL | let b = 0.0f128; |
| 45 | + | ^^^^^^^ |
| 46 | + | |
| 47 | + = note: see issue #116909 <https://github.com/rust-lang/rust/issues/116909> for more information |
| 48 | + = help: add `#![feature(f128)]` to the crate attributes to enable |
| 49 | + = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date |
| 50 | + |
| 51 | +error: aborting due to 5 previous errors |
| 52 | + |
| 53 | +For more information about this error, try `rustc --explain E0658`. |
0 commit comments