File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
branches/tmp/src/test/compile-fail Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,6 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
34
refs/heads/beta: 522d09dfecbeca1595f25ac58c6d0178bbd21d7d
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
- refs/heads/tmp: a19bbca092783cd456036069ba475857fc3bc4bb
37
+ refs/heads/tmp: 1759cfa01c1eac211ab8134e7edbebb14e41df29
38
38
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
39
39
refs/tags/homu-tmp: 4a5101a42f8ea36bdbe14749e672ab78cb971726
Original file line number Diff line number Diff line change @@ -22,5 +22,5 @@ impl Foo for isize {
22
22
23
23
pub fn main ( ) {
24
24
let x: isize = Foo :: < A =usize > :: bar ( ) ;
25
- //~^ERROR unexpected binding of associated item in expression path
25
+ //~^ ERROR unexpected binding of associated item in expression path
26
26
}
Original file line number Diff line number Diff line change @@ -24,11 +24,11 @@ pub fn main() {
24
24
s. as_bytes ( ) [ 3_usize ] ;
25
25
s. as_bytes ( ) [ 3 ] ;
26
26
s. as_bytes ( ) [ 3u8 ] ; //~ERROR the trait `core::ops::Index<u8>` is not implemented
27
- //~^ERROR the trait `core::ops::Index<u8>` is not implemented
27
+ //~^ ERROR the trait `core::ops::Index<u8>` is not implemented
28
28
s. as_bytes ( ) [ 3i8 ] ; //~ERROR the trait `core::ops::Index<i8>` is not implemented
29
- //~^ERROR the trait `core::ops::Index<i8>` is not implemented
29
+ //~^ ERROR the trait `core::ops::Index<i8>` is not implemented
30
30
s. as_bytes ( ) [ 3u32 ] ; //~ERROR the trait `core::ops::Index<u32>` is not implemented
31
- //~^ERROR the trait `core::ops::Index<u32>` is not implemented
31
+ //~^ ERROR the trait `core::ops::Index<u32>` is not implemented
32
32
s. as_bytes ( ) [ 3i32 ] ; //~ERROR the trait `core::ops::Index<i32>` is not implemented
33
- //~^ERROR the trait `core::ops::Index<i32>` is not implemented
33
+ //~^ ERROR the trait `core::ops::Index<i32>` is not implemented
34
34
}
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ trait Foo {
15
15
// This should emit the less confusing error, not the more confusing one.
16
16
17
17
fn foo ( _x : Foo + Send ) {
18
- //~^ERROR the trait `core::marker::Sized` is not implemented
18
+ //~^ ERROR the trait `core::marker::Sized` is not implemented
19
19
}
20
20
21
21
fn main ( ) { }
You can’t perform that action at this time.
0 commit comments