Skip to content

Commit 79572e5

Browse files
committed
---
yaml --- r: 236154 b: refs/heads/stable c: 4aaf1be h: refs/heads/master v: v3
1 parent 78200db commit 79572e5

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
@@ -29,7 +29,7 @@ refs/heads/tmp: afae2ff723393b3ab4ccffef6ac7c6d1809e2da0
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: f859507de8c410b648d934d8f5ec1c52daac971d
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: a09bce1047ab5714e56891edee0feab8813ba99e
32+
refs/heads/stable: 4aaf1beffbcf531990168d857df8f9cf62ca1f6b
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/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/stable/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/stable/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/stable/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/stable/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)