Skip to content

Commit 55b9f7b

Browse files
committed
---
yaml --- r: 274409 b: refs/heads/stable c: efe56c8 h: refs/heads/master i: 274407: 46c9ef8
1 parent 577f875 commit 55b9f7b

12 files changed

+33
-10
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: 36656f812d123644fb24c16a721803fa92656af0
32+
refs/heads/stable: efe56c883354fe476fe4c989bb34e68f825ecfdc
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/changing-crates.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
extern crate a;
1717
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
18-
//~^ NOTE: perhaps this crate needs to be recompiled
18+
//~| NOTE: perhaps this crate needs to be recompiled
19+
//~| NOTE: crate `a` path #1:
20+
//~| NOTE: crate `b` path #1:
1921

2022
fn main() {}

branches/stable/src/test/compile-fail/default_ty_param_conflict_cross_crate.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ fn main() {
2626
meh(foo);
2727
//~^ ERROR: mismatched types:
2828
//~| NOTE: conflicting type parameter defaults `bool` and `char`
29+
//~| NOTE: ...that was applied to an unconstrained type variable here
2930
}

branches/stable/src/test/compile-fail/lifetime-inference-give-expl-lifetime-param.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ struct Baz<'x> {
4949

5050
impl<'a> Baz<'a> {
5151
fn baz2<'b>(&self, x: &isize) -> (&'b isize, &'b isize) {
52+
//~^ HELP: parameter as shown: fn baz2<'b>(&self, x: &'b isize) -> (&'a isize, &'a isize)
5253
// The lifetime that gets assigned to `x` seems somewhat random.
5354
// I have disabled this test for the time being. --pcwalton
5455
(self.bar, x) //~ ERROR: cannot infer

branches/stable/src/test/compile-fail/privacy1.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,17 @@ mod foo {
129129
::bar::baz::foo(); //~ ERROR: function `foo` is inaccessible
130130
//~^ NOTE: module `baz` is private
131131
::bar::baz::bar(); //~ ERROR: function `bar` is inaccessible
132+
//~^ NOTE: module `baz` is private
132133
}
133134

134135
fn test2() {
135136
use bar::baz::{foo, bar};
136137
//~^ ERROR: function `foo` is inaccessible
137-
//~^^ ERROR: function `bar` is inaccessible
138+
//~| NOTE: module `baz` is private
139+
//~| ERROR: function `bar` is inaccessible
140+
//~| NOTE: module `baz` is private
141+
142+
138143
foo();
139144
bar();
140145
}

branches/stable/src/test/compile-fail/svh-change-lit.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515

1616
extern crate a;
1717
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
18-
//~^ NOTE: perhaps this crate needs to be recompiled
18+
//~| NOTE: perhaps this crate needs to be recompiled
19+
//~| NOTE: crate `a` path #1:
20+
//~| NOTE: crate `b` path #1:
1921

2022
fn main() {
2123
b::foo()

branches/stable/src/test/compile-fail/svh-change-significant-cfg.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515

1616
extern crate a;
1717
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
18-
//~^ NOTE: perhaps this crate needs to be recompiled
18+
//~| NOTE: perhaps this crate needs to be recompiled
19+
//~| NOTE: crate `a` path #1:
20+
//~| NOTE: crate `b` path #1:
1921

2022
fn main() {
2123
b::foo()

branches/stable/src/test/compile-fail/svh-change-trait-bound.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515

1616
extern crate a;
1717
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
18-
//~^ NOTE: perhaps this crate needs to be recompiled
18+
//~| NOTE: perhaps this crate needs to be recompiled
19+
//~| NOTE: crate `a` path #1:
20+
//~| NOTE: crate `b` path #1:
1921

2022
fn main() {
2123
b::foo()

branches/stable/src/test/compile-fail/svh-change-type-arg.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515

1616
extern crate a;
1717
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
18-
//~^ NOTE: perhaps this crate needs to be recompiled
18+
//~| NOTE: perhaps this crate needs to be recompiled
19+
//~| NOTE: crate `a` path #1:
20+
//~| NOTE: crate `b` path #1:
1921

2022
fn main() {
2123
b::foo()

branches/stable/src/test/compile-fail/svh-change-type-ret.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515

1616
extern crate a;
1717
extern crate b; //~ ERROR: found possibly newer version of crate `a` which `b` depends on
18-
//~^ NOTE: perhaps this crate needs to be recompiled
18+
//~| NOTE: perhaps this crate needs to be recompiled
19+
//~| NOTE: crate `a` path #1:
20+
//~| NOTE: crate `b` path #1:
1921

2022
fn main() {
2123
b::foo()

0 commit comments

Comments
 (0)