Remove references to a collection of unknown lints.

This commit is contained in:
Felix S. Klock II 2018-08-31 15:12:32 +02:00
parent 06f36a04a4
commit 90241dfba3
22 changed files with 0 additions and 28 deletions

View File

@ -11,7 +11,6 @@
// run-pass
// pretty-expanded FIXME #23616
#![allow(dead_assignment)]
#![allow(unreachable_code)]
#![allow(unused_variables)]

View File

@ -9,7 +9,6 @@
// except according to those terms.
// run-pass
#![allow(dead_assignment)]
#![allow(unused_variables)]
pub fn main() {

View File

@ -9,7 +9,6 @@
// except according to those terms.
// run-pass
#![allow(dead_assignment)]
fn id<T>(x: T) -> T { return x; }

View File

@ -9,7 +9,6 @@
// except according to those terms.
// run-pass
#![allow(dead_assignment)]
enum foo<T> { arm(T), }

View File

@ -11,7 +11,6 @@
// run-pass
// pretty-expanded FIXME #23616
#![allow(dead_assignment)]
#![allow(unused_variables)]
#![feature(box_syntax)]

View File

@ -11,7 +11,5 @@
// run-pass
// compile-flags: --test
#![deny(unstable)]
#[test]
pub fn foo() {}

View File

@ -9,7 +9,6 @@
// except according to those terms.
// run-pass
#![allow(unused_import)]
use {{}, {}};

View File

@ -11,8 +11,6 @@
// run-pass
// pretty-expanded FIXME #23616
#![allow(dead_assignment)]
pub fn main() {
let s: String = "foobar".to_string();
let mut t: &str = &s;

View File

@ -10,8 +10,6 @@
// run-pass
#![deny(type_limits)]
pub fn main() {
let i: usize = 0;
assert!(i <= 0xFFFF_FFFF);

View File

@ -11,7 +11,6 @@
// except according to those terms.
// run-pass
#![allow(unnecessary_allocation)]
#![feature(box_syntax)]
// Tests for a previous bug that occurred due to an interaction

View File

@ -12,7 +12,6 @@
// pp-exact - Make sure we print all the attributes
// pretty-expanded FIXME #23616
#![allow(unused_attribute)]
#![feature(custom_attribute)]
#[frobable]

View File

@ -10,8 +10,6 @@
// run-pass
#![allow(type_limits)]
// Unsigned integer operations
pub fn main() {
assert!((0u8 < 255u8));

View File

@ -13,7 +13,6 @@
// pretty-expanded FIXME #23616
#![allow(dead_assignment)]
#![allow(unused_variables)]
// Should pass region checking.

View File

@ -18,7 +18,6 @@
extern crate sepcomp_extern_lib;
extern {
#[allow(ctypes)]
fn foo() -> usize;
}

View File

@ -10,7 +10,6 @@
// run-pass
// pp-exact - Make sure we actually print the attributes
#![allow(unused_attribute)]
#![feature(custom_attribute)]
struct cat {

View File

@ -9,7 +9,6 @@
// except according to those terms.
// run-pass
#![allow(unused_attribute)]
#![feature(custom_attribute)]
struct cat {

View File

@ -11,7 +11,6 @@
// run-pass
// pretty-expanded FIXME #23616
#![allow(dead_assignment)]
#![allow(unused_variables)]
enum Animal {

View File

@ -9,7 +9,6 @@
// except according to those terms.
// run-pass
#![allow(dead_assignment)]
use std::sync::mpsc::channel;

View File

@ -10,8 +10,6 @@
// run-pass
#![allow(dead_assignment)]
use std::sync::mpsc::channel;
pub fn main() { test00(); }

View File

@ -11,8 +11,6 @@
// run-pass
// ignore-emscripten no threads support
#![allow(dead_assignment)]
use std::sync::mpsc::{channel, Sender};
use std::thread;

View File

@ -11,7 +11,6 @@
// run-pass
// pretty-expanded FIXME #23616
#![allow(dead_assignment)]
#![allow(unused_variables)]
trait Foo {

View File

@ -10,7 +10,6 @@
// run-pass
#![allow(dead_assignment)]
#![feature(box_syntax)]
pub fn main() {