Skip to content

Commit f904ebf

Browse files
committed
---
yaml --- r: 271875 b: refs/heads/master c: 09af503 h: refs/heads/master i: 271873: 19cee68 271871: 7356c63
1 parent f4f2b0c commit f904ebf

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 6f16c5c81f86be4b4b50ef5396c6412844235dbf
2+
refs/heads/master: 09af5036da4087569a033eea91c8b9dd63a079a0
33
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
44
refs/heads/try: 49312a405e14a449b98fe0056b12a40ac128be4a
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

trunk/src/test/compile-fail/privacy1.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ mod foo {
102102
//~^ ERROR: method `bar` is private
103103
::bar::baz::A.foo2(); //~ ERROR: module `baz` is private
104104
::bar::baz::A.bar2(); //~ ERROR: module `baz` is private
105+
//~^ ERROR: method `bar2` is private
105106

106107
let _: isize =
107108
::bar::B::foo(); //~ ERROR: trait `B` is private

trunk/src/test/compile-fail/regions-glb-free-free.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
mod argparse {
1212
pub struct Flag<'a> {
1313
name: &'a str,
14-
desc: &'a str,
14+
pub desc: &'a str,
1515
max_count: usize,
1616
value: usize
1717
}

trunk/src/test/parse-fail/pub-method-macro.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,4 @@ mod bleh {
2929
}
3030
}
3131

32-
fn main() {
33-
bleh::S.f();
34-
}
32+
fn main() {}

0 commit comments

Comments
 (0)