Skip to content

Commit 3e6c916

Browse files
author
Ariel Ben-Yehuda
committed
---
yaml --- r: 225322 b: refs/heads/stable c: c68e652 h: refs/heads/master v: v3
1 parent 3157664 commit 3e6c916

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ refs/heads/tmp: e5d90d98402475b6e154ce216f9efcb80da1a747
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: 1fe32ca12c51afcd761d9962f51a74ff0d07a591
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 65a3245319405e4dd53f10abdbc042502d184c93
32+
refs/heads/stable: c68e65251c86ffdb21aecec56ec45e303d952d79
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b

branches/stable/src/test/compile-fail/assoc-inherent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
struct Foo;
1414

1515
impl Foo {
16-
type Bar = isize; //~ERROR associated items are not allowed in inherent impls
16+
type Bar = isize; //~ERROR associated types are not allowed in inherent impls
1717
}
1818

1919
fn main() {}

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

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

1111
trait Expr : PartialEq<Self::Item> {
1212
//~^ ERROR: unsupported cyclic reference between types/traits detected
13-
type Item = Expr;
13+
type Item;
1414
}
1515

1616
fn main() {}

0 commit comments

Comments
 (0)