File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
branches/snap-stage3/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 1
1
---
2
2
refs/heads/master: 857ac28867722111249b5c3ef68e32499bd11ea0
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: a19bbca092783cd456036069ba475857fc3bc4bb
4
+ refs/heads/snap-stage3: 1759cfa01c1eac211ab8134e7edbebb14e41df29
5
5
refs/heads/try: 1c28ab65017d74fc13d003f7c7a73d1a48e5406f
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
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