mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
make it pass for now
This commit is contained in:
parent
a4d869ca76
commit
f25d4fd253
2 changed files with 9 additions and 0 deletions
|
@ -11,6 +11,10 @@
|
|||
#![allow(unknown_lints, indexing_slicing, shadow_reuse, missing_docs_in_private_items)]
|
||||
#![recursion_limit = "256"]
|
||||
|
||||
// FIXME(mark-i-m) remove after i128 stablization merges
|
||||
#![allow(stable_features)]
|
||||
#![feature(i128, i128_type)]
|
||||
|
||||
#[macro_use]
|
||||
extern crate rustc;
|
||||
extern crate rustc_typeck;
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
#![feature(integer_atomics)]
|
||||
#![allow(blacklisted_name)]
|
||||
#![deny(replace_consts)]
|
||||
|
||||
// FIXME(mark-i-m) remove after i128 stablization merges
|
||||
#![allow(stable_features)]
|
||||
#![feature(i128, i128_type)]
|
||||
|
||||
use std::sync::atomic::*;
|
||||
use std::sync::{ONCE_INIT, Once};
|
||||
|
||||
|
|
Loading…
Reference in a new issue