about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/test/ui/coherence/issue-85026.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/coherence/issue-85026.stderr b/src/test/ui/coherence/issue-85026.stderr
index cf9cd52d2bf..a5da19bbfaa 100644
--- a/src/test/ui/coherence/issue-85026.stderr
+++ b/src/test/ui/coherence/issue-85026.stderr
@@ -2,7 +2,7 @@ error[E0785]: cannot define inherent `impl` for a dyn auto trait
   --> $DIR/issue-85026.rs:5:6
    |
 LL | impl dyn AutoTrait {}
-   |      ^^^^^^^^^^^^^ impl requires a principal trait
+   |      ^^^^^^^^^^^^^ impl requires at least one non-auto trait
    |
    = note: define and implement a new trait or type instead
 
@@ -10,7 +10,7 @@ error[E0785]: cannot define inherent `impl` for a dyn auto trait
   --> $DIR/issue-85026.rs:8:6
    |
 LL | impl dyn Unpin {}
-   |      ^^^^^^^^^ impl requires a principal trait
+   |      ^^^^^^^^^ impl requires at least one non-auto trait
    |
    = note: define and implement a new trait or type instead