summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-item/ambiguous-associated-type-with-generics.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/associated-item/ambiguous-associated-type-with-generics.stderr')
-rw-r--r--tests/ui/associated-item/ambiguous-associated-type-with-generics.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/associated-item/ambiguous-associated-type-with-generics.stderr b/tests/ui/associated-item/ambiguous-associated-type-with-generics.stderr
index 97088b79f..f7a47be8d 100644
--- a/tests/ui/associated-item/ambiguous-associated-type-with-generics.stderr
+++ b/tests/ui/associated-item/ambiguous-associated-type-with-generics.stderr
@@ -2,7 +2,7 @@ error[E0223]: ambiguous associated type
--> $DIR/ambiguous-associated-type-with-generics.rs:13:13
|
LL | let _x: <dyn Trait<i32>>::Ty;
- | ^^^^^^^^^^^^^^^^^^^^ help: use the fully-qualified path: `<dyn Trait<i32> as Assoc>::Ty`
+ | ^^^^^^^^^^^^^^^^^^^^ help: use fully-qualified syntax: `<dyn Trait<i32> as Assoc>::Ty`
error: aborting due to previous error