Skip to content

Commit 4aaf1be

Browse files
committed
Fix tests
1 parent a09bce1 commit 4aaf1be

5 files changed

+8
-0
lines changed

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;

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

0 commit comments

Comments
 (0)