summaryrefslogtreecommitdiffstats
path: root/tests/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.stderr')
-rw-r--r--tests/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.stderr b/tests/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.stderr
index b29766295..4547e1c98 100644
--- a/tests/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.stderr
+++ b/tests/ui/trait-bounds/shadowed-path-in-trait-bound-suggestion.stderr
@@ -6,7 +6,7 @@ LL | pub struct A<H: A::Trait>(pub H);
|
help: consider importing this trait
|
-LL | use A::Trait;
+LL + use A::Trait;
|
help: if you import `Trait`, refer to it directly
|