Skip to content

Commit 268f09f

Browse files
authored
Rollup merge of rust-lang#70912 - estebank:reduce-type-param-sugg-verbosity, r=davidtwco
Do not suggest adding type param when `use` is already suggested Fix rust-lang#70365, cc rust-lang#70572.
2 parents 6f8fc4d + a3e54b5 commit 268f09f

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

src/librustc_resolve/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -2480,8 +2480,7 @@ impl<'a> Resolver<'a> {
24802480
let (span, found_use) = UsePlacementFinder::check(krate, node_id);
24812481
if !candidates.is_empty() {
24822482
diagnostics::show_candidates(&mut err, span, &candidates, better, found_use);
2483-
}
2484-
if let Some((span, msg, sugg, appl)) = suggestion {
2483+
} else if let Some((span, msg, sugg, appl)) = suggestion {
24852484
err.span_suggestion(span, msg, sugg, appl);
24862485
}
24872486
err.emit();

src/test/ui/privacy/privacy-ns1.stderr

-4
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ LL | use foo2::Bar;
6363
|
6464
LL | use foo3::Bar;
6565
|
66-
help: you might be missing a type parameter
67-
|
68-
LL | fn test_glob3<Bar>() {
69-
| ^^^^^
7066

7167
error[E0107]: wrong number of const arguments: expected 0, found 1
7268
--> $DIR/privacy-ns1.rs:35:17

src/test/ui/suggestions/no-extern-crate-in-type.stderr

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ help: possible candidate is found in another module, you can import it into scop
88
|
99
LL | use foo::Foo;
1010
|
11-
help: you might be missing a type parameter
12-
|
13-
LL | type Output<Foo> = Option<Foo>;
14-
| ^^^^^
1511

1612
error: aborting due to previous error
1713

0 commit comments

Comments
 (0)