Skip to content

Commit 69f8a06

Browse files
committed
---
yaml --- r: 191591 b: refs/heads/tmp c: 1759cfa h: refs/heads/master i: 191589: 5d9b95b 191587: 30a32f4 191583: 77b2c37 v: v3
1 parent 85d521f commit 69f8a06

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
@@ -34,6 +34,6 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
3434
refs/heads/beta: 522d09dfecbeca1595f25ac58c6d0178bbd21d7d
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37-
refs/heads/tmp: a19bbca092783cd456036069ba475857fc3bc4bb
37+
refs/heads/tmp: 1759cfa01c1eac211ab8134e7edbebb14e41df29
3838
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3939
refs/tags/homu-tmp: 4a5101a42f8ea36bdbe14749e672ab78cb971726

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