rust/tests/ui/rfcs/rfc-2632-const-trait-impl/const_derives/derive-const-use.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-04-16 06:12:37 -05:00
error[E0635]: unknown feature `const_default_impls`
2023-12-10 04:42:34 -06:00
--> $DIR/derive-const-use.rs:3:41
2023-04-16 06:12:37 -05:00
|
2023-12-10 04:42:34 -06:00
LL | #![feature(const_trait_impl, const_cmp, const_default_impls, derive_const, effects)]
| ^^^^^^^^^^^^^^^^^^^
2023-04-16 06:12:37 -05:00
2023-12-10 04:42:34 -06:00
error: const `impl` for trait `Default` which is not marked with `#[const_trait]`
--> $DIR/derive-const-use.rs:7:12
|
LL | impl const Default for A {
| ^^^^^^^
|
= 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: const `impl` for trait `Default` which is not marked with `#[const_trait]`
--> $DIR/derive-const-use.rs:15:16
|
LL | #[derive_const(Default, PartialEq)]
| ^^^^^^^
|
= 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
= note: this error originates in the derive macro `Default` (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 3 previous errors
2023-04-16 06:12:37 -05:00
For more information about this error, try `rustc --explain E0635`.