summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/impl-method-mismatch.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/impl-method-mismatch.stderr')
-rw-r--r--tests/ui/traits/impl-method-mismatch.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/traits/impl-method-mismatch.stderr b/tests/ui/traits/impl-method-mismatch.stderr
index 252b5aff9..2061fc785 100644
--- a/tests/ui/traits/impl-method-mismatch.stderr
+++ b/tests/ui/traits/impl-method-mismatch.stderr
@@ -9,9 +9,9 @@ note: type in trait
|
LL | fn jumbo(&self, x: &usize) -> usize;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- = note: expected signature `fn(&usize, &usize) -> usize`
- found signature `unsafe fn(&usize, &usize)`
+ = note: expected signature `fn(&_, &_) -> usize`
+ found signature `unsafe fn(&_, &_)`
-error: aborting due to previous error
+error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0053`.