rustc: Remove old_orphan_check entirely

This commit is contained in:
Alex Crichton 2015-03-31 13:40:39 -07:00
parent 5cf126ae2f
commit 608fff8582
9 changed files with 19 additions and 41 deletions

View file

@ -12,7 +12,7 @@
#![allow(unknown_features)]
#![feature(box_syntax)]
#![feature(old_orphan_check, rustc_private)]
#![feature(rustc_private)]
extern crate serialize;

View file

@ -13,7 +13,7 @@
// pretty-expanded FIXME #23616
#![feature(old_orphan_check, rustc_private)]
#![feature(rustc_private)]
extern crate serialize;

View file

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![feature(old_orphan_check, rand, rustc_private)]
#![feature(rand, rustc_private)]
extern crate serialize;
extern crate rand;

View file

@ -10,7 +10,7 @@
// pretty-expanded FIXME #23616
#![feature(old_orphan_check, rustc_private, old_io)]
#![feature(rustc_private, old_io)]
extern crate rbml;
extern crate serialize;

View file

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![feature(old_orphan_check, rustc_private)]
#![feature(rustc_private)]
extern crate serialize;

View file

@ -13,7 +13,7 @@
// pretty-expanded FIXME #23616
#![feature(old_orphan_check, core)]
#![feature(core)]
use std::ops::Index;

View file

@ -10,7 +10,6 @@
// If `Mul` used an associated type for its output, this test would
// work more smoothly.
#![feature(old_orphan_check)]
use std::ops::Mul;