Skip to content

Commit 56ad8bc

Browse files
committed
Do not suggest duplicate bounds
1 parent bc4a339 commit 56ad8bc

File tree

5 files changed

+49
-32
lines changed

5 files changed

+49
-32
lines changed

src/librustc_typeck/check/method/suggest.rs

+23-19
Original file line numberDiff line numberDiff line change
@@ -853,26 +853,30 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
853853
} else {
854854
sp
855855
};
856-
// FIXME: contrast `t.def_id` against `param.bounds` to not suggest
857-
// traits already there. That can happen when the cause is that
858-
// we're in a const scope or associated function used as a method.
859-
err.span_suggestions(
860-
sp,
861-
&message(format!(
862-
"restrict type parameter `{}` with",
863-
param.name.ident(),
864-
)),
865-
candidates.iter().map(|t| {
866-
format!(
867-
"{}{} {}{}",
856+
let trait_def_ids: FxHashSet<DefId> = param
857+
.bounds
858+
.iter()
859+
.filter_map(|bound| bound.trait_def_id())
860+
.collect();
861+
if !candidates.iter().any(|t| trait_def_ids.contains(&t.def_id)) {
862+
err.span_suggestions(
863+
sp,
864+
&message(format!(
865+
"restrict type parameter `{}` with",
868866
param.name.ident(),
869-
if impl_trait { " +" } else { ":" },
870-
self.tcx.def_path_str(t.def_id),
871-
if has_bounds.is_some() { " + " } else { "" },
872-
)
873-
}),
874-
Applicability::MaybeIncorrect,
875-
);
867+
)),
868+
candidates.iter().map(|t| {
869+
format!(
870+
"{}{} {}{}",
871+
param.name.ident(),
872+
if impl_trait { " +" } else { ":" },
873+
self.tcx.def_path_str(t.def_id),
874+
if has_bounds.is_some() { " + " } else { "" },
875+
)
876+
}),
877+
Applicability::MaybeIncorrect,
878+
);
879+
}
876880
suggested = true;
877881
}
878882
Node::Item(hir::Item {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
trait Adapter {
2+
const LINKS: usize;
3+
}
4+
5+
struct Foo<A: Adapter> {
6+
adapter: A,
7+
links: [u32; A::LINKS], // Shouldn't suggest bounds already there.
8+
//~^ ERROR: no associated item named `LINKS` found
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0599]: no associated item named `LINKS` found for type parameter `A` in the current scope
2+
--> $DIR/associated-item-duplicate-bounds.rs:7:21
3+
|
4+
LL | links: [u32; A::LINKS], // Shouldn't suggest bounds already there.
5+
| ^^^^^ associated item not found in `A`
6+
|
7+
= help: items from traits can only be used if the type parameter is bounded by the trait
8+
9+
error: aborting due to previous error
10+
11+
For more information about this error, try `rustc --explain E0599`.

src/test/ui/issues/issue-39559.stderr

-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ LL | entries: [T; D::dim()],
55
| ^^^ function or associated item not found in `D`
66
|
77
= help: items from traits can only be used if the type parameter is bounded by the trait
8-
help: the following trait defines an item `dim`, perhaps you need to restrict type parameter `D` with it:
9-
|
10-
LL | pub struct Vector<T, D: Dim + Dim> {
11-
| ^^^^^^^^
128

139
error: aborting due to previous error
1410

src/test/ui/span/issue-7575.stderr

+4-9
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,10 @@ error[E0599]: no method named `is_str` found for type parameter `T` in the curre
6161
--> $DIR/issue-7575.rs:70:7
6262
|
6363
LL | t.is_str()
64-
| ^^^^^^ this is an associated function, not a method
64+
| --^^^^^^--
65+
| | |
66+
| | this is an associated function, not a method
67+
| help: disambiguate the method call for the candidate: `ManyImplTrait::is_str(t)`
6568
|
6669
= note: found the following associated functions; to be used as methods, functions must have a `self` parameter
6770
note: the candidate is defined in the trait `ManyImplTrait`
@@ -70,14 +73,6 @@ note: the candidate is defined in the trait `ManyImplTrait`
7073
LL | fn is_str() -> bool {
7174
| ^^^^^^^^^^^^^^^^^^^
7275
= help: items from traits can only be used if the type parameter is bounded by the trait
73-
help: disambiguate the method call for the candidate
74-
|
75-
LL | ManyImplTrait::is_str(t)
76-
|
77-
help: the following trait defines an item `is_str`, perhaps you need to restrict type parameter `T` with it:
78-
|
79-
LL | fn param_bound<T: ManyImplTrait + ManyImplTrait>(t: T) -> bool {
80-
| ^^^^^^^^^^^^^^^^^^
8176

8277
error: aborting due to 3 previous errors
8378

0 commit comments

Comments
 (0)