make it pass for now
This commit is contained in:
@@ -11,6 +11,10 @@
|
|||||||
#![allow(unknown_lints, indexing_slicing, shadow_reuse, missing_docs_in_private_items)]
|
#![allow(unknown_lints, indexing_slicing, shadow_reuse, missing_docs_in_private_items)]
|
||||||
#![recursion_limit = "256"]
|
#![recursion_limit = "256"]
|
||||||
|
|
||||||
|
// FIXME(mark-i-m) remove after i128 stablization merges
|
||||||
|
#![allow(stable_features)]
|
||||||
|
#![feature(i128, i128_type)]
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate rustc;
|
extern crate rustc;
|
||||||
extern crate rustc_typeck;
|
extern crate rustc_typeck;
|
||||||
|
|||||||
@@ -1,6 +1,11 @@
|
|||||||
#![feature(integer_atomics)]
|
#![feature(integer_atomics)]
|
||||||
#![allow(blacklisted_name)]
|
#![allow(blacklisted_name)]
|
||||||
#![deny(replace_consts)]
|
#![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::atomic::*;
|
||||||
use std::sync::{ONCE_INIT, Once};
|
use std::sync::{ONCE_INIT, Once};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user