summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0034.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/error-codes/E0034.stderr')
-rw-r--r--tests/ui/error-codes/E0034.stderr4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/ui/error-codes/E0034.stderr b/tests/ui/error-codes/E0034.stderr
index e29621702..da6f22188 100644
--- a/tests/ui/error-codes/E0034.stderr
+++ b/tests/ui/error-codes/E0034.stderr
@@ -14,12 +14,10 @@ note: candidate #2 is defined in an impl of the trait `Trait2` for the type `Tes
|
LL | fn foo() {}
| ^^^^^^^^
-help: disambiguate the associated function for candidate #1
+help: use fully-qualified syntax to disambiguate
|
LL | <Test as Trait1>::foo()
| ~~~~~~~~~~~~~~~~~~
-help: disambiguate the associated function for candidate #2
- |
LL | <Test as Trait2>::foo()
| ~~~~~~~~~~~~~~~~~~