summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-86756.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/issues/issue-86756.stderr (renamed from src/test/ui/issues/issue-86756.stderr)4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/ui/issues/issue-86756.stderr b/tests/ui/issues/issue-86756.stderr
index 693cfeced..bfa7459ab 100644
--- a/src/test/ui/issues/issue-86756.stderr
+++ b/tests/ui/issues/issue-86756.stderr
@@ -9,8 +9,6 @@ LL | trait Foo<T, T = T> {}
error[E0412]: cannot find type `dyn` in this scope
--> $DIR/issue-86756.rs:5:10
|
-LL | fn eq<A, B>() {
- | - help: you might be missing a type parameter: `, dyn`
LL | eq::<dyn, Foo>
| ^^^ not found in this scope
@@ -42,7 +40,7 @@ LL | trait Foo<T, T = T> {}
help: add missing generic argument
|
LL | eq::<dyn, Foo<T>>
- | ~~~~~~
+ | +++
error: aborting due to 3 previous errors; 1 warning emitted