summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/rustc-impl-const-stability.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/consts/rustc-impl-const-stability.stderr')
-rw-r--r--tests/ui/consts/rustc-impl-const-stability.stderr12
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/ui/consts/rustc-impl-const-stability.stderr b/tests/ui/consts/rustc-impl-const-stability.stderr
index e6930da71..ba8e6c155 100644
--- a/tests/ui/consts/rustc-impl-const-stability.stderr
+++ b/tests/ui/consts/rustc-impl-const-stability.stderr
@@ -7,5 +7,15 @@ 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
-error: aborting due to previous error
+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
+
+error: aborting due to 2 previous errors
+For more information about this error, try `rustc --explain E0207`.