Skip to content

Commit ea9333a

Browse files
committed
fixed tests (hope the last time)
1 parent 2f38979 commit ea9333a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/rustdoc-ui/not-wf-ambiguous-normalization.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0207]: the type parameter `T` is not constrained by the impl trait, self
44
LL | impl<T> Allocator for DefaultAllocator {
55
| ^ unconstrained type parameter
66
|
7-
help: either remove the type parameter T, or make use of it, for example
7+
help: either remove the unused type parameter `T`, or make use of it
88
|
99
LL - impl<T> Allocator for DefaultAllocator {
1010
LL + impl Allocator for DefaultAllocator {

tests/rustdoc-ui/synthetic-auto-trait-impls/unconstrained-param-in-impl-ambiguity.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ error[E0207]: the type parameter `Q` is not constrained by the impl trait, self
44
LL | unsafe impl<Q: Trait> Send for Inner {}
55
| ^ unconstrained type parameter
66
|
7-
help: either remove the type parameter Q, or make use of it, for example
7+
help: either remove the unused type parameter `Q`, or make use of it
88
|
99
LL - unsafe impl<Q: Trait> Send for Inner {}
1010
LL + unsafe impl Send for Inner {}

0 commit comments

Comments
 (0)