Skip to content

Commit 37315fb

Browse files
committed
---
yaml --- r: 229083 b: refs/heads/try c: 4aaf1be h: refs/heads/master i: 229081: bc57a37 229079: ad9487f v: v3
1 parent 46ad523 commit 37315fb

File tree

6 files changed

+9
-1
lines changed

6 files changed

+9
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: aca2057ed5fb7af3f8905b2bc01f72fa001c35c8
33
refs/heads/snap-stage3: 1af31d4974e33027a68126fa5a5a3c2c6491824f
4-
refs/heads/try: a09bce1047ab5714e56891edee0feab8813ba99e
4+
refs/heads/try: 4aaf1beffbcf531990168d857df8f9cf62ca1f6b
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
77
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try/src/test/compile-fail/associated-types-overridden-default.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
// except according to those terms.
1010

1111
#![feature(associated_consts)]
12+
#![feature(associated_type_defaults)]
1213

1314
pub trait Tr {
1415
type Assoc = u8;

branches/try/src/test/compile-fail/issue-23073.rs

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

11+
#![feature(associated_type_defaults)]
12+
1113
trait Foo { type T; }
1214
trait Bar {
1315
type Foo: Foo;

branches/try/src/test/compile-fail/issue-23595-1.rs

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

11+
#![feature(associated_type_defaults)]
12+
1113
use std::ops::{Index};
1214

1315
trait Hierarchy {

branches/try/src/test/compile-fail/issue-23595-2.rs

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

11+
#![feature(associated_type_defaults)]
12+
1113
pub struct C<AType: A> {a:AType}
1214

1315
pub trait A {

branches/try/src/test/compile-fail/lint-missing-doc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// injected intrinsics by the compiler.
1313
#![deny(missing_docs)]
1414
#![allow(dead_code)]
15+
#![feature(associated_type_defaults)]
1516

1617
//! Some garbage docs for the crate here
1718
#![doc="More garbage"]

0 commit comments

Comments
 (0)