Skip to content

Commit 2de3fad

Browse files
committed
auto merge of #16021 : brson/rust/mb, r=pcwalton
No longer does anything.
2 parents 3d7a7f6 + aa48654 commit 2de3fad

File tree

213 files changed

+23
-213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+23
-213
lines changed

src/test/auxiliary/cci_nested_lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::cell::RefCell;
1413
use std::gc::{Gc, GC};

src/test/auxiliary/crate-method-reexport-grrrrrrr2.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211
#![crate_id="crate_method_reexport_grrrrrrr2"]
1312

1413
pub use name_pool::add;

src/test/auxiliary/issue-2631-a.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211
#![crate_id="req"]
1312
#![crate_type = "lib"]
1413

src/test/auxiliary/issue-5521.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::collections::HashMap;
1413
use std::gc::Gc;

src/test/auxiliary/macro_crate_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// force-host
1212

13-
#![feature(globs, plugin_registrar, macro_rules, quote, managed_boxes)]
13+
#![feature(globs, plugin_registrar, macro_rules, quote)]
1414

1515
extern crate syntax;
1616
extern crate rustc;

src/test/bench/sudoku.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// ignore-pretty very bad with line comments
1212

13-
#![feature(managed_boxes)]
1413
#![allow(non_snake_case_functions)]
1514

1615
use std::io;

src/test/bench/task-perf-alloc-unwind.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes, unsafe_destructor)]
11+
#![feature(unsafe_destructor)]
1212

1313
extern crate collections;
1414
extern crate time;

src/test/compile-fail/auto-ref-slice-plus-ref.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
fn main() {
1413

src/test/compile-fail/autoderef-full-lval.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
extern crate debug;
1413

src/test/compile-fail/borrowck-borrow-immut-deref-of-gc-as-mut.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::GC;
1413

src/test/compile-fail/borrowck-loan-rcvr-overloaded-op.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
struct Point {
1413
x: int,

src/test/compile-fail/borrowck-loan-rcvr.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
struct point { x: int, y: int }
1413

src/test/compile-fail/borrowck-managed-pointer-deref-scope.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Verify that managed pointers scope is treated like ownoed pointers.
1212
// regresion test for #11586
1313

14-
#![feature(managed_boxes)]
1514

1615
use std::gc::{GC, Gc};
1716

src/test/compile-fail/borrowck-preserve-box-in-field.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// exec-env:RUST_POISON_ON_FREE=1
1212

13-
#![feature(managed_boxes)]
1413

1514
use std::gc::GC;
1615

src/test/compile-fail/borrowck-preserve-box-in-uniq.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// exec-env:RUST_POISON_ON_FREE=1
1212

13-
#![feature(managed_boxes)]
1413

1514
use std::gc::GC;
1615

src/test/compile-fail/borrowck-preserve-box.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// exec-env:RUST_POISON_ON_FREE=1
1212

13-
#![feature(managed_boxes)]
1413

1514
use std::gc::GC;
1615

src/test/compile-fail/borrowck-preserve-cond-box.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// exec-env:RUST_POISON_ON_FREE=1
1212

13-
#![feature(managed_boxes)]
1413

1514
use std::gc::GC;
1615

src/test/compile-fail/borrowck-preserve-expl-deref.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// exec-env:RUST_POISON_ON_FREE=1
1212

13-
#![feature(managed_boxes)]
1413

1514
use std::gc::GC;
1615

src/test/compile-fail/box-static-bound.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::{Gc, GC};
1413

src/test/compile-fail/check-static-values-constraints.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
10-
#![feature(managed_boxes)]
1110

1211
// Verifies all possible restrictions for static items values.
1312

src/test/compile-fail/drop-on-non-struct.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312

1413
type Foo = Vec<u8>;

src/test/compile-fail/issue-2063-resource.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::Gc;
1413

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::Gc;
1413

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::GC;
1413

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::Gc;
1413

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::cell::RefCell;
1413
use std::gc::{Gc, GC};

src/test/compile-fail/kindck-copy.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test which of the builtin types are considered POD.
1212

13-
#![feature(managed_boxes)]
1413

1514
use std::rc::Rc;
1615
use std::gc::Gc;

src/test/compile-fail/kindck-destructor-owned.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::Gc;
1413

src/test/compile-fail/kindck-nonsendable-1.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::{Gc, GC};
1413

src/test/compile-fail/lint-heap-memory.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211
#![forbid(heap_memory)]
1312
#![allow(dead_code)]
1413

src/test/compile-fail/lint-managed-heap-memory.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010

1111
#![allow(dead_code)]
12-
#![feature(managed_boxes)]
1312
#![forbid(managed_heap_memory)]
1413

1514
use std::gc::{Gc, GC};

src/test/compile-fail/moves-based-on-type-exprs.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// Tests that references to move-by-default values trigger moves when
1212
// they occur as part of various kinds of expressions.
1313

14-
#![feature(managed_boxes)]
1514

1615
struct Foo<A> { f: A }
1716
fn guard(_s: String) -> bool {fail!()}

src/test/compile-fail/no-send-res-ports.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes, unsafe_destructor)]
11+
#![feature(unsafe_destructor)]
1212

1313
extern crate debug;
1414

src/test/compile-fail/occurs-check.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::GC;
1413

src/test/compile-fail/pinned-deep-copy.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes, unsafe_destructor)]
11+
#![feature(unsafe_destructor)]
1212

1313
extern crate debug;
1414

src/test/compile-fail/regions-appearance-constraint.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// Test no-special rooting is used for managed boxes
1212

13-
#![feature(managed_boxes)]
1413

1514
use std::gc::GC;
1615

src/test/compile-fail/regions-infer-borrow-scope-too-big.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::Gc;
1413

src/test/compile-fail/regions-infer-borrow-scope-within-loop.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::Gc;
1413

src/test/compile-fail/regions-infer-invariance-due-to-mutability-3.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
struct invariant<'a> {
1413
f: |x: &mut &'a int|: 'static

src/test/compile-fail/regions-infer-invariance-due-to-mutability-4.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
struct invariant<'a> {
1413
f: ||: 'static -> &mut &'a int

src/test/compile-fail/regions-infer-paramd-indirect.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
// Check that we correctly infer that b and c must be region
1413
// parameterized because they reference a which requires a region.

src/test/compile-fail/static-region-bound.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::GC;
1413

src/test/compile-fail/struct-field-assignability.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
// option. This file may not be copied, modified, or distributed
1111
// except according to those terms.
1212

13-
#![feature(managed_boxes)]
1413

1514
use std::gc::{Gc, GC};
1615

src/test/compile-fail/terr-sorts.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::Gc;
1413

src/test/compile-fail/trait-impl-method-mismatch.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::Gc;
1413

src/test/compile-fail/unique-unique-kind.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
use std::gc::GC;
1413

src/test/compile-fail/unique-vec-res.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes, unsafe_destructor)]
11+
#![feature(unsafe_destructor)]
1212

1313
extern crate debug;
1414
use std::cell::Cell;

src/test/compile-fail/unsendable-class.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(managed_boxes)]
1211

1312
// Test that a class with an unsendable field can't be
1413
// sent

src/test/debuginfo/borrowed-managed-basic.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
// ignore-android: FIXME(#10381)
1212

13-
#![feature(managed_boxes)]
1413

1514
// Gdb doesn't know about UTF-32 character encoding and will print a rust char as only
1615
// its numerical value.

0 commit comments

Comments
 (0)