Skip to content

Commit 636946a

Browse files
committed
---
yaml --- r: 274299 b: refs/heads/stable c: 877ed0d h: refs/heads/master i: 274297: be59fdc 274295: 6a006a1
1 parent 0e9cb31 commit 636946a

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ refs/heads/tmp: e06d2ad9fcd5027bcaac5b08fc9aa39a49d0ecd3
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: c0221c8897db309a79990367476177b1230bb264
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: b285ebc48ee7f342ca5a83e8b030359ab84e9ea0
32+
refs/heads/stable: 877ed0d0683b7ec0d217f6b00e520dc79e515ebd
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/src/test/compile-fail/issue-25385.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ fn main() {
1818
let a = 1i32;
1919
foo!(a);
2020

21-
foo!(1.i32.foo());
21+
foo!(1i32.foo());
2222
//~^ ERROR attempted access of field `i32` on type `_`, but no field with that name was found
2323
}

branches/stable/src/test/compile-fail/issue-26093.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ macro_rules! not_an_lvalue {
1616
}
1717

1818
fn main() {
19+
20+
0 = 42;
1921
not_an_lvalue!(99);
2022
}

branches/stable/src/test/compile-fail/issue-26480.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ macro_rules! write {
2424
unsafe {
2525
write(stdout, $arr.as_ptr() as *const i8,
2626
$arr.len() * size_of($arr[0]));
27-
//~^ ERROR mismatched types: expected `u64`, found `usize`
27+
//~^ ERROR mismatched types
2828
}
2929
}}
3030
}

branches/stable/src/test/compile-fail/issue-28308.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010

1111
fn main() {
1212
assert!("foo");
13-
//~^ ERROR cannot apply unary operator `!` to type `&'static str`'`
13+
//~^ ERROR cannot apply unary operator `!` to type `&'static str`
1414
}

branches/stable/src/test/compile-fail/issue-29084.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ macro_rules! foo {
1212
($d:expr) => {{
1313
fn bar(d: u8) { }
1414
bar(&mut $d);
15-
//~^ ERROR mismatched types: expected `u8`, found `&mut u8`
15+
//~^ ERROR mismatched types
1616
}}
1717
}
1818

0 commit comments

Comments
 (0)