Skip to content

Commit d51b738

Browse files
committed
---
yaml --- r: 190655 b: refs/heads/snap-stage3 c: 1759cfa h: refs/heads/master i: 190653: 2e1d4c5 190651: fe2d549 190647: 3f881dc 190639: f55b068 190623: ff43fbe 190591: 5ebdcfe v: v3
1 parent 13c74dd commit d51b738

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 857ac28867722111249b5c3ef68e32499bd11ea0
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: a19bbca092783cd456036069ba475857fc3bc4bb
4+
refs/heads/snap-stage3: 1759cfa01c1eac211ab8134e7edbebb14e41df29
55
refs/heads/try: 1c28ab65017d74fc13d003f7c7a73d1a48e5406f
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d

branches/snap-stage3/src/test/compile-fail/associated-types-eq-expr-path.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ impl Foo for isize {
2222

2323
pub fn main() {
2424
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
2626
}

branches/snap-stage3/src/test/compile-fail/integral-indexing.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ pub fn main() {
2424
s.as_bytes()[3_usize];
2525
s.as_bytes()[3];
2626
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
2828
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
3030
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
3232
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
3434
}

branches/snap-stage3/src/test/compile-fail/trait-bounds-not-on-bare-trait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ trait Foo {
1515
// This should emit the less confusing error, not the more confusing one.
1616

1717
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
1919
}
2020

2121
fn main() { }

0 commit comments

Comments
 (0)