Skip to content

Commit 90241df

Browse files
committed
Remove references to a collection of unknown lints.
1 parent 06f36a0 commit 90241df

22 files changed

+0
-28
lines changed

src/test/ui/run-pass/for-loop-while/liveness-assign-imm-local-after-loop.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// run-pass
1212
// pretty-expanded FIXME #23616
1313

14-
#![allow(dead_assignment)]
1514
#![allow(unreachable_code)]
1615
#![allow(unused_variables)]
1716

src/test/ui/run-pass/for-loop-while/while-loop-constraints-2.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
// run-pass
12-
#![allow(dead_assignment)]
1312
#![allow(unused_variables)]
1413

1514
pub fn main() {

src/test/ui/run-pass/generics/generic-fn.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
// run-pass
12-
#![allow(dead_assignment)]
1312

1413
fn id<T>(x: T) -> T { return x; }
1514

src/test/ui/run-pass/generics/generic-tag-match.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
// run-pass
12-
#![allow(dead_assignment)]
1312

1413
enum foo<T> { arm(T), }
1514

src/test/ui/run-pass/generics/generic-tag.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// run-pass
1212
// pretty-expanded FIXME #23616
1313

14-
#![allow(dead_assignment)]
1514
#![allow(unused_variables)]
1615
#![feature(box_syntax)]
1716

src/test/ui/run-pass/issues/issue-20823.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,5 @@
1111
// run-pass
1212
// compile-flags: --test
1313

14-
#![deny(unstable)]
15-
1614
#[test]
1715
pub fn foo() {}

src/test/ui/run-pass/issues/issue-47673.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
// run-pass
12-
#![allow(unused_import)]
1312

1413
use {{}, {}};
1514

src/test/ui/run-pass/issues/issue-5550.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// run-pass
1212
// pretty-expanded FIXME #23616
1313

14-
#![allow(dead_assignment)]
15-
1614
pub fn main() {
1715
let s: String = "foobar".to_string();
1816
let mut t: &str = &s;

src/test/ui/run-pass/issues/issue-6130.rs

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

1111
// run-pass
1212

13-
#![deny(type_limits)]
14-
1513
pub fn main() {
1614
let i: usize = 0;
1715
assert!(i <= 0xFFFF_FFFF);

src/test/ui/run-pass/issues/issue-9382.rs

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

1313
// run-pass
14-
#![allow(unnecessary_allocation)]
1514
#![feature(box_syntax)]
1615

1716
// Tests for a previous bug that occurred due to an interaction

src/test/ui/run-pass/methods/method-attributes.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
// pp-exact - Make sure we print all the attributes
1313
// pretty-expanded FIXME #23616
1414

15-
#![allow(unused_attribute)]
1615
#![feature(custom_attribute)]
1716

1817
#[frobable]

src/test/ui/run-pass/numbers-arithmetic/arith-unsigned.rs

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

1111
// run-pass
1212

13-
#![allow(type_limits)]
14-
1513
// Unsigned integer operations
1614
pub fn main() {
1715
assert!((0u8 < 255u8));

src/test/ui/run-pass/regions/regions-fn-subtyping.rs

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

1414
// pretty-expanded FIXME #23616
1515

16-
#![allow(dead_assignment)]
1716
#![allow(unused_variables)]
1817

1918
// Should pass region checking.

src/test/ui/run-pass/sepcomp/sepcomp-extern.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
extern crate sepcomp_extern_lib;
1919

2020
extern {
21-
#[allow(ctypes)]
2221
fn foo() -> usize;
2322
}
2423

src/test/ui/run-pass/structs-enums/class-attributes-1.rs

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

1111
// run-pass
1212
// pp-exact - Make sure we actually print the attributes
13-
#![allow(unused_attribute)]
1413
#![feature(custom_attribute)]
1514

1615
struct cat {

src/test/ui/run-pass/structs-enums/class-attributes-2.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
// run-pass
12-
#![allow(unused_attribute)]
1312
#![feature(custom_attribute)]
1413

1514
struct cat {

src/test/ui/run-pass/structs-enums/enum-variants.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// run-pass
1212
// pretty-expanded FIXME #23616
1313

14-
#![allow(dead_assignment)]
1514
#![allow(unused_variables)]
1615

1716
enum Animal {

src/test/ui/run-pass/threads-sendsync/task-comm-4.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
// run-pass
12-
#![allow(dead_assignment)]
1312

1413
use std::sync::mpsc::channel;
1514

src/test/ui/run-pass/threads-sendsync/task-comm-6.rs

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

1111
// run-pass
1212

13-
#![allow(dead_assignment)]
14-
1513
use std::sync::mpsc::channel;
1614

1715
pub fn main() { test00(); }

src/test/ui/run-pass/threads-sendsync/task-comm-7.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
// run-pass
1212
// ignore-emscripten no threads support
1313

14-
#![allow(dead_assignment)]
15-
1614
use std::sync::mpsc::{channel, Sender};
1715
use std::thread;
1816

src/test/ui/run-pass/traits/traits-default-method-mut.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
// run-pass
1212
// pretty-expanded FIXME #23616
1313

14-
#![allow(dead_assignment)]
1514
#![allow(unused_variables)]
1615

1716
trait Foo {

src/test/ui/run-pass/unique/unique-assign-drop.rs

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

1111
// run-pass
1212

13-
#![allow(dead_assignment)]
1413
#![feature(box_syntax)]
1514

1615
pub fn main() {

0 commit comments

Comments
 (0)