Skip to content

Commit 9e1b5de

Browse files
author
Ariel Ben-Yehuda
committed
---
yaml --- r: 218742 b: refs/heads/snap-stage3 c: c68e652 h: refs/heads/master v: v3
1 parent f1e5f24 commit 9e1b5de

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
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: c044791d80ea0dc5c4b57b6030a67b69f8510239
3-
refs/heads/snap-stage3: 65a3245319405e4dd53f10abdbc042502d184c93
3+
refs/heads/snap-stage3: c68e65251c86ffdb21aecec56ec45e303d952d79
44
refs/heads/try: b53c0f93eedcdedd4fd89bccc5a3a09d1c5cd23e
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/snap-stage3/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/snap-stage3/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)