Skip to content

Commit 8d2eb59

Browse files
committed
Auto merge of #27382 - brson:gate-assoc-type, r=alexcrichton
There are still problems in both the design and implementation of this, so we don't want it landing in 1.2. cc @arielb1 @nikomatsakis cc #27364 r? @alexcrichton
2 parents cb250b7 + 4aaf1be commit 8d2eb59

11 files changed

+40
-2
lines changed

src/libcore/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
#![allow(raw_pointer_derive)]
6666
#![deny(missing_docs)]
6767

68+
#![feature(associated_type_defaults)]
6869
#![feature(intrinsics)]
6970
#![feature(lang_items)]
7071
#![feature(on_unimplemented)]

src/libsyntax/feature_gate.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,12 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Status)] = &[
163163

164164
// Allows the definition recursive static items.
165165
("static_recursion", "1.3.0", Active),
166-
// Allows default type parameters to influence type inference.
167-
("default_type_parameter_fallback", "1.3.0", Active)
166+
167+
// Allows default type parameters to influence type inference.
168+
("default_type_parameter_fallback", "1.3.0", Active),
169+
170+
// Allows associated type defaults
171+
("associated_type_defaults", "1.2.0", Active),
168172
];
169173
// (changing above list without updating src/doc/reference.md makes @cmr sad)
170174

@@ -762,6 +766,10 @@ impl<'a, 'v> Visitor<'v> for PostExpansionVisitor<'a> {
762766
self.gate_feature("const_fn", ti.span, "const fn is unstable");
763767
}
764768
}
769+
ast::TypeTraitItem(_, Some(_)) => {
770+
self.gate_feature("associated_type_defaults", ti.span,
771+
"associated type defaults are unstable");
772+
}
765773
_ => {}
766774
}
767775
visit::walk_trait_item(self, ti);

src/test/auxiliary/xcrate_associated_type_defaults.rs

+2
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 trait Foo {
1214
type Input = usize;
1315
fn bar(&self, _: Self::Input) {}

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

+1
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;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
trait Foo {
12+
type Bar = u8; //~ ERROR associated type defaults are unstable
13+
}
14+
15+
fn main() {}

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

+2
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;

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

+2
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 {

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

+2
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 {

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

+1
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"]

src/test/run-pass/default-associated-types.rs

+2
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<T> {
1214
type Out = T;
1315
fn foo(&self) -> Self::Out;

src/test/run-pass/issue-25339.rs

+2
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::marker::PhantomData;
1214

1315
pub trait Routing<I> {

0 commit comments

Comments
 (0)