Skip to content

Commit 255b797

Browse files
klutzyalexcrichton
authored andcommitted
---
yaml --- r: 120273 b: refs/heads/dist-snap c: 0350d8e h: refs/heads/master i: 120271: af5a6ad v: v3
1 parent d6fbf47 commit 255b797

File tree

7 files changed

+9
-5
lines changed

7 files changed

+9
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 1813e5aa1a03b0596b8de7abd1af31edf5d6098f
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: bdd360bb13bb4afad15a9ec7ea1594c22a8d359f
9+
refs/heads/dist-snap: 0350d8e6d048d7af37ec00622fc40b504981f100
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/test/run-pass/assert-eq-macro-success.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(managed_boxes)]
12+
1113
#[deriving(Eq, Show)]
1214
struct Point { x : int }
1315

branches/dist-snap/src/test/run-pass/binops.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010

1111
// Binop corner cases
1212

13+
#![feature(managed_boxes)]
14+
1315
fn test_nil() {
1416
assert_eq!((), ());
1517
assert!((!(() != ())));

branches/dist-snap/src/test/run-pass/box-compare.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-
11+
#![feature(managed_boxes)]
1212

1313
pub fn main() {
1414
assert!((@1 < @3));

branches/dist-snap/src/test/run-pass/ifmt.rs

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

1111

12-
#![feature(macro_rules)]
12+
#![feature(macro_rules, managed_boxes)]
1313
#![deny(warnings)]
1414
#![allow(unused_must_use)]
1515
#![allow(deprecated_owned_vector)]

branches/dist-snap/src/test/run-pass/nullable-pointer-iotareduction.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(macro_rules)]
11+
#![feature(macro_rules, managed_boxes)]
1212

1313
use std::{option, mem};
1414

branches/dist-snap/src/test/run-pass/nullable-pointer-size.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(macro_rules)]
11+
#![feature(macro_rules, managed_boxes)]
1212

1313
use std::mem;
1414

0 commit comments

Comments
 (0)