File tree 4 files changed +24
-5
lines changed
4 files changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -810,23 +810,23 @@ impl Vid for TyVid {
810
810
}
811
811
812
812
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( ) ) }
814
814
}
815
815
816
816
impl Vid for IntVid {
817
817
fn to_uint ( & self ) -> uint { let IntVid ( v) = * self ; v }
818
818
}
819
819
820
820
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( ) ) }
822
822
}
823
823
824
824
impl Vid for FloatVid {
825
825
fn to_uint ( & self ) -> uint { let FloatVid ( v) = * self ; v }
826
826
}
827
827
828
828
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( ) ) }
830
830
}
831
831
832
832
impl Vid for RegionVid {
Original file line number Diff line number Diff line change 10
10
11
11
fn main ( ) {
12
12
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 >>`
14
14
}
15
15
}
Original file line number Diff line number Diff line change 12
12
13
13
static A : ( int , int ) = ( 4 , 2 ) ;
14
14
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)
16
16
}
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments