Skip to content

Commit 9887298

Browse files
committed
---
yaml --- r: 146835 b: refs/heads/try2 c: 87b166d h: refs/heads/master i: 146833: a5bdb57 146831: 9339f57 v: v3
1 parent 238178a commit 9887298

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 1f7bfac9d28340b3eda0291dd01b7914c77a88ae
8+
refs/heads/try2: 87b166d94a16d3b7e32ba53d0cec7a5d3fd776ba
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libstd/cell.rs

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

1111
//! Types dealing with dynamic mutability
1212
13-
#[missing_doc];
14-
1513
use prelude::*;
1614
use cast;
1715
use util::NonCopyable;

branches/try2/src/libstd/vec.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2704,7 +2704,7 @@ mod tests {
27042704
assert_eq!(a.init(), &[11]);
27052705
}
27062706

2707-
#[init]
2707+
#[test]
27082708
#[should_fail]
27092709
fn test_init_empty() {
27102710
let a: ~[int] = ~[];
@@ -2719,7 +2719,7 @@ mod tests {
27192719
assert_eq!(a.initn(2), &[11]);
27202720
}
27212721

2722-
#[init]
2722+
#[test]
27232723
#[should_fail]
27242724
fn test_initn_empty() {
27252725
let a: ~[int] = ~[];

branches/try2/src/test/run-pass/ifmt.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ use std::str;
2323
struct A;
2424
struct B;
2525

26-
#[fmt="foo"]
2726
impl fmt::Signed for A {
2827
fn fmt(_: &A, f: &mut fmt::Formatter) { f.buf.write("aloha".as_bytes()); }
2928
}

0 commit comments

Comments
 (0)