Skip to content

Commit 89500e9

Browse files
authored
Auto merge of #36338 - estebank:primitive-shadow, r=jseyfried
Be more specific when type parameter shadows primitive type When a type parameter shadows a primitive type, the error message was non obvious. For example, given the file `file.rs`: ```rust trait Parser<T> { fn parse(text: &str) -> Option<T>; } impl<bool> Parser<bool> for bool { fn parse(text: &str) -> Option<bool> { Some(true) } } fn main() { println!("{}", bool::parse("ok").unwrap_or(false)); } ``` The output was: ```bash % rustc file.rs error[E0308]: mismatched types --> file.rs:7:14 | 7 | Some(true) | ^^^^ expected type parameter, found bool a | = note: expected type `bool` = note: found type `bool` error: aborting due to previous error ``` We now show extra information about the type: ```bash % rustc file.rs error[E0308]: mismatched types --> file.rs:7:14 | 7 | Some(true) | ^^^^ expected type parameter, found bool a | = note: expected type `bool` (type parameter) = note: found type `bool` (bool) error: aborting due to previous error ``` Fixes #35030
2 parents a36e069 + 68e8624 commit 89500e9

File tree

5 files changed

+63
-5
lines changed

5 files changed

+63
-5
lines changed

src/librustc/infer/error_reporting.rs

+12-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,18 @@ impl<'a, 'gcx, 'tcx> InferCtxt<'a, 'gcx, 'tcx> {
547547
};
548548

549549
if !is_simple_error {
550-
diag.note_expected_found(&"type", &expected, &found);
550+
if expected == found {
551+
if let &TypeError::Sorts(ref values) = terr {
552+
diag.note_expected_found_extra(
553+
&"type", &expected, &found,
554+
&format!(" ({})", values.expected.sort_string(self.tcx)),
555+
&format!(" ({})", values.found.sort_string(self.tcx)));
556+
} else {
557+
diag.note_expected_found(&"type", &expected, &found);
558+
}
559+
} else {
560+
diag.note_expected_found(&"type", &expected, &found);
561+
}
551562
}
552563
}
553564

src/librustc/ty/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ impl<'tcx> fmt::Display for TypeError<'tcx> {
210210
}
211211

212212
impl<'a, 'gcx, 'lcx, 'tcx> ty::TyS<'tcx> {
213-
fn sort_string(&self, tcx: TyCtxt<'a, 'gcx, 'lcx>) -> String {
213+
pub fn sort_string(&self, tcx: TyCtxt<'a, 'gcx, 'lcx>) -> String {
214214
match self.sty {
215215
ty::TyBool | ty::TyChar | ty::TyInt(_) |
216216
ty::TyUint(_) | ty::TyFloat(_) | ty::TyStr | ty::TyNever => self.to_string(),

src/librustc_errors/lib.rs

+14-3
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,21 @@ impl<'a> DiagnosticBuilder<'a> {
273273
expected: &fmt::Display,
274274
found: &fmt::Display)
275275
-> &mut DiagnosticBuilder<'a>
276+
{
277+
self.note_expected_found_extra(label, expected, found, &"", &"")
278+
}
279+
280+
pub fn note_expected_found_extra(&mut self,
281+
label: &fmt::Display,
282+
expected: &fmt::Display,
283+
found: &fmt::Display,
284+
expected_extra: &fmt::Display,
285+
found_extra: &fmt::Display)
286+
-> &mut DiagnosticBuilder<'a>
276287
{
277288
// For now, just attach these as notes
278-
self.note(&format!("expected {} `{}`", label, expected));
279-
self.note(&format!(" found {} `{}`", label, found));
289+
self.note(&format!("expected {} `{}`{}", label, expected, expected_extra));
290+
self.note(&format!(" found {} `{}`{}", label, found, found_extra));
280291
self
281292
}
282293

@@ -764,4 +775,4 @@ pub fn expect<T, M>(diag: &Handler, opt: Option<T>, msg: M) -> T where
764775
Some(t) => t,
765776
None => diag.bug(&msg()),
766777
}
767-
}
778+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// rustc-env:RUST_NEW_ERROR_FORMAT
12+
13+
trait Parser<T> {
14+
fn parse(text: &str) -> Option<T>;
15+
}
16+
17+
impl<bool> Parser<bool> for bool {
18+
fn parse(text: &str) -> Option<bool> {
19+
Some(true)
20+
}
21+
}
22+
23+
fn main() {
24+
println!("{}", bool::parse("ok").unwrap_or(false));
25+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0308]: mismatched types
2+
--> $DIR/issue-35030.rs:19:14
3+
|
4+
19 | Some(true)
5+
| ^^^^ expected type parameter, found bool
6+
|
7+
= note: expected type `bool` (type parameter)
8+
= note: found type `bool` (bool)
9+
10+
error: aborting due to previous error
11+

0 commit comments

Comments
 (0)