about summary refs log tree commit diff
path: root/tests/ui/traits/const-traits/std-impl-gate.stock.stderr
blob: 261f68bebdb258ecc45f47dc428e57954cf190ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error[E0658]: cannot call conditionally-const associated function `<Vec<usize> as Default>::default` in constant functions
  --> $DIR/std-impl-gate.rs:13:5
   |
LL |     Default::default()
   |     ^^^^^^^^^^^^^^^^^^
   |
   = note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
   = note: see issue #143874 <https://github.com/rust-lang/rust/issues/143874> for more information
   = help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
   = note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date

error: `Default` is not yet stable as a const trait
  --> $DIR/std-impl-gate.rs:13:5
   |
LL |     Default::default()
   |     ^^^^^^^^^^^^^^^^^^
   |
help: add `#![feature(const_default)]` to the crate attributes to enable
   |
LL + #![feature(const_default)]
   |

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0658`.