Skip to content

Commit fd270a8

Browse files
committed
---
yaml --- r: 187737 b: refs/heads/tmp c: 9ac0736 h: refs/heads/master i: 187735: 7e7df99 v: v3
1 parent adb264f commit fd270a8

File tree

5 files changed

+5
-10
lines changed

5 files changed

+5
-10
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ 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: 866a5ee2999ae7cb96de58a77647509d090456ee
37+
refs/heads/tmp: 9ac073604c6689a773eb19bcc375234384326682
3838
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f

branches/tmp/src/librustc_typeck/coherence/orphan.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ use middle::traits;
1515
use middle::ty;
1616
use syntax::ast::{Item, ItemImpl};
1717
use syntax::ast;
18-
use syntax::ast_map;
1918
use syntax::ast_util;
2019
use syntax::visit;
2120
use util::ppaux::{Repr, UserString};

branches/tmp/src/test/compile-fail/issue-12729.rs renamed to branches/tmp/src/test/run-pass/issue-12729.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-tidy-linelength
12-
1311
pub struct Foo;
1412

1513
mod bar {
1614
use Foo;
1715

18-
impl Foo { //~ERROR inherent implementations are only allowed on types defined in the current module
16+
impl Foo {
1917
fn baz(&self) {}
2018
}
2119
}

branches/tmp/src/test/compile-fail/issue-7607-2.rs renamed to branches/tmp/src/test/run-pass/issue-7607-2.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-tidy-linelength
12-
1311
pub mod a {
1412
pub struct Foo { a: usize }
1513
}
1614

1715
pub mod b {
1816
use a::Foo;
19-
impl Foo { //~ERROR inherent implementations are only allowed on types defined in the current module
17+
impl Foo {
2018
fn bar(&self) { }
2119
}
2220
}

branches/tmp/src/test/run-pass/trait-impl-2.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
mod Foo {
12-
trait Trait {
11+
pub mod Foo {
12+
pub trait Trait {
1313
fn foo(&self);
1414
}
1515
}

0 commit comments

Comments
 (0)