2024-11-02 16:10:24 -07:00
|
|
|
error[E0658]: use of unstable library feature `derive_const`
|
2022-09-20 11:55:07 +00:00
|
|
|
--> $DIR/derive-const-gate.rs:1:3
|
|
|
|
|
|
|
|
|
|
|
LL | #[derive_const(Default)]
|
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
|
|
= help: add `#![feature(derive_const)]` to the crate attributes to enable
|
2024-01-10 01:39:02 -05:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2022-09-20 11:55:07 +00:00
|
|
|
|
2024-06-25 09:50:01 +00:00
|
|
|
error: const `impl` for trait `Default` which is not marked with `#[const_trait]`
|
|
|
|
|
--> $DIR/derive-const-gate.rs:1:16
|
|
|
|
|
|
|
|
|
|
|
LL | #[derive_const(Default)]
|
2024-12-09 19:34:43 +00:00
|
|
|
| ^^^^^^^ this trait is not `const`
|
2024-06-25 09:50:01 +00:00
|
|
|
|
|
|
|
|
|
= note: marking a trait with `#[const_trait]` ensures all default method bodies are `const`
|
|
|
|
|
= note: adding a non-const method body in the future would be a breaking change
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2022-09-20 11:55:07 +00:00
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|