Skip to content

Commit 6bd8279

Browse files
committed
---
yaml --- r: 191359 b: refs/heads/try c: 1759cfa h: refs/heads/master i: 191357: eda6a18 191355: 377702a 191351: 77042f5 191343: 0e1696f 191327: fb3ef19 191295: 83f7016 191231: 895b522 v: v3
1 parent 035372a commit 6bd8279

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 809a554fca2d0ebc2ba50077016fe282a4064752
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: c64d671671aea2e44ee7fc6eb00ee75fc30ed7b9
5-
refs/heads/try: a19bbca092783cd456036069ba475857fc3bc4bb
5+
refs/heads/try: 1759cfa01c1eac211ab8134e7edbebb14e41df29
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/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/try/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/try/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)