Skip to content

Commit 0066a47

Browse files
committed
---
yaml --- r: 16255 b: refs/heads/try c: 6396e2c h: refs/heads/master i: 16253: f8ee374 16251: 399f108 16247: 5fe64e3 16239: 79a7682 16223: 13b6db6 16191: 75fa6f2 16127: dee9578 v: v3
1 parent 7b3a05d commit 0066a47

File tree

11 files changed

+18
-3
lines changed

11 files changed

+18
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 01a6c713c3434a7ce3afb8e50ae9aaffbda042a0
5+
refs/heads/try: 6396e2c3c3bedd6f6bdd55e30f064b7edccbce8c
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/cargo/cargo.rc

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

2020
#[no_core];
2121

22+
#[warn(no_non_implicitly_copyable_typarams,no_vecs_not_implicitly_copyable)];
23+
2224
use core(vers = "0.2");
2325
use std(vers = "0.2");
2426
use rustc(vers = "0.2");

branches/try/src/cargo/cargo.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// cargo.rs - Rust package manager
22

3-
#[warn(no_non_implicitly_copyable_typarams)];
4-
53
import syntax::{ast, codemap};
64
import syntax::parse;
75
import rustc::metadata::filesearch::{get_cargo_root, get_cargo_root_nearest,

branches/try/src/compiletest/compiletest.rc

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

33
#[no_core];
44

5+
#[warn(no_vecs_not_implicitly_copyable)];
6+
57
use core(vers = "0.2");
68
use std(vers = "0.2");
79

branches/try/src/fuzzer/fuzzer.rc

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

55
#[no_core];
66

7+
#[warn(no_vecs_not_implicitly_copyable)];
8+
79
use core(vers = "0.2");
810
use std(vers = "0.2");
911
use syntax(vers = "0.2");

branches/try/src/libcore/core.rc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ This behavior can be disabled with the `#[no_core]` crate attribute.
3131
// Don't link to core. We are core.
3232
#[no_core];
3333

34+
#[warn(no_vecs_not_implicitly_copyable)];
35+
3436
export int, i8, i16, i32, i64;
3537
export uint, u8, u16, u32, u64;
3638
export float, f32, f64;

branches/try/src/libstd/std.rc

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

1111
#[no_core];
1212

13+
#[warn(no_vecs_not_implicitly_copyable)];
14+
1315
use core(vers = "0.2");
1416
import core::*;
1517

branches/try/src/libsyntax/syntax.rc

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

99
#[no_core];
1010

11+
#[warn(no_vecs_not_implicitly_copyable)];
12+
1113
use core(vers = "0.2");
1214
use std(vers = "0.2");
1315

branches/try/src/rustc/driver/rustc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#[no_core];
2+
#[warn(no_vecs_not_implicitly_copyable)];
23

34
use core(vers = "0.2");
45
use std(vers = "0.2");

branches/try/src/rustc/rustc.rc

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

1212
#[no_core];
1313

14+
#[warn(no_vecs_not_implicitly_copyable)];
15+
1416
use core(vers = "0.2");
1517
use std(vers = "0.2");
1618
use syntax(vers = "0.2");

branches/try/src/rustdoc/rustdoc.rc

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

1212
#[no_core];
1313

14+
#[warn(no_vecs_not_implicitly_copyable)];
15+
1416
use core(vers = "0.2");
1517
use std(vers = "0.2");
1618
use rustc(vers = "0.2");

0 commit comments

Comments
 (0)