rust/tests/ui/consts/rustc-impl-const-stability.stderr

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

12 lines
418 B
Plaintext
Raw Permalink Normal View History

2023-04-16 06:12:37 -05:00
error: const `impl` for trait `Default` which is not marked with `#[const_trait]`
2024-10-30 13:03:44 -05:00
--> $DIR/rustc-impl-const-stability.rs:15:12
2023-04-16 06:12:37 -05:00
|
LL | impl const Default for Data {
| ^^^^^^^
|
= 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
2024-06-30 12:08:45 -05:00
error: aborting due to 1 previous error
2023-04-16 06:12:37 -05:00