Skip to content

Commit e25d706

Browse files
committed
rustc: make error messages containing generic more self-explanatory.
Unsuffixed literals like 1 and 1.1, and free type parameters sometimes have to be printed in error messages, which ended up with <V0>, <VI0> and <VF0>. This change puts the words "generic" and "integer"/"float" into the message so it's not a completely black box.
1 parent b93a4da commit e25d706

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

src/librustc/middle/ty.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -810,23 +810,23 @@ impl Vid for TyVid {
810810
}
811811

812812
impl ToStr for TyVid {
813-
fn to_str(&self) -> ~str { format!("<V{}>", self.to_uint()) }
813+
fn to_str(&self) -> ~str { format!("<generic \\#{}>", self.to_uint()) }
814814
}
815815

816816
impl Vid for IntVid {
817817
fn to_uint(&self) -> uint { let IntVid(v) = *self; v }
818818
}
819819

820820
impl ToStr for IntVid {
821-
fn to_str(&self) -> ~str { format!("<VI{}>", self.to_uint()) }
821+
fn to_str(&self) -> ~str { format!("<generic integer \\#{}>", self.to_uint()) }
822822
}
823823

824824
impl Vid for FloatVid {
825825
fn to_uint(&self) -> uint { let FloatVid(v) = *self; v }
826826
}
827827

828828
impl ToStr for FloatVid {
829-
fn to_str(&self) -> ~str { format!("<VF{}>", self.to_uint()) }
829+
fn to_str(&self) -> ~str { format!("<generic float \\#{}>", self.to_uint()) }
830830
}
831831

832832
impl Vid for RegionVid {

src/test/compile-fail/issue-3680.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
fn main() {
1212
match None {
13-
Err(_) => () //~ ERROR mismatched types: expected `std::option::Option<<V1>>` but found `std::result::Result<<V2>,<V3>>`
13+
Err(_) => () //~ ERROR mismatched types: expected `std::option::Option<<generic #1>>` but found `std::result::Result<<generic #2>,<generic #3>>`
1414
}
1515
}

src/test/compile-fail/issue-4968.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212

1313
static A: (int,int) = (4,2);
1414
fn main() {
15-
match 42 { A => () } //~ ERROR mismatched types: expected `<VI0>` but found `(int,int)` (expected integral variable but found tuple)
15+
match 42 { A => () } //~ ERROR mismatched types: expected `<generic integer #0>` but found `(int,int)` (expected integral variable but found tuple)
1616
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Copyright 2014 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+
struct Foo<T,U>(T);
12+
13+
fn main() {
14+
match Foo(1.1) {
15+
1 => {}
16+
//~^ ERROR expected `Foo<<generic float #0>,<generic #2>>` but found `<generic integer #0>`
17+
}
18+
19+
}

0 commit comments

Comments
 (0)