Skip to content

Commit 6209d06

Browse files
committed
---
yaml --- r: 93883 b: refs/heads/try c: 87b166d h: refs/heads/master i: 93881: 7920c0b 93879: 5d74bc3 v: v3
1 parent d069cfb commit 6209d06

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 0da105a8b7b6b1e0568e8ff20f6ff4b13cc7ecc2
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: a6d3e57dca68fde4effdda3e4ae2887aa535fcd6
5-
refs/heads/try: 1f7bfac9d28340b3eda0291dd01b7914c77a88ae
5+
refs/heads/try: 87b166d94a16d3b7e32ba53d0cec7a5d3fd776ba
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/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/try/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/try/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)