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.

22 lines
921 B
Plaintext
Raw Normal View History

2023-04-16 06:12:37 -05:00
error: const `impl` for trait `Default` which is not marked with `#[const_trait]`
--> $DIR/rustc-impl-const-stability.rs:15:12
|
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
2023-08-06 08:20:55 -05:00
error[E0207]: the const parameter `host` is not constrained by the impl trait, self type, or predicates
--> $DIR/rustc-impl-const-stability.rs:15:6
|
LL | impl const Default for Data {
| ^^^^^ unconstrained const parameter
|
= note: expressions using a const parameter must map each value to a distinct output value
= note: proving the result of expressions other than the parameter are unique is not supported
2023-08-06 12:00:26 -05:00
error: aborting due to 2 previous errors
2023-04-16 06:12:37 -05:00
2023-08-06 12:00:26 -05:00
For more information about this error, try `rustc --explain E0207`.