Skip to content

Commit 16bb1e1

Browse files
committed
---
yaml --- r: 222815 b: refs/heads/master c: 4aaf1be h: refs/heads/master i: 222813: 0144c09 222811: 0406a4a 222807: 992b4e8 222799: 57983c5 222783: 794bafa v: v3
1 parent 916a468 commit 16bb1e1

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,5 +1,5 @@
11
---
2-
refs/heads/master: a09bce1047ab5714e56891edee0feab8813ba99e
2+
refs/heads/master: 4aaf1beffbcf531990168d857df8f9cf62ca1f6b
33
refs/heads/snap-stage3: a5c12f4e39d32af3c951b66bd2839bc0b5a1125b
44
refs/heads/try: b53c0f93eedcdedd4fd89bccc5a3a09d1c5cd23e
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

trunk/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;

trunk/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;

trunk/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 {

trunk/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 {

trunk/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)