Test fixes and rebase conflicts

Also some tidying up of a bunch of crate attributes
This commit is contained in:
Alex Crichton
2015-01-30 12:26:44 -08:00
parent 188d7c0bc3
commit 3a2530d611
56 changed files with 227 additions and 246 deletions

View File

@@ -49,7 +49,6 @@
#![crate_name = "core"]
#![unstable(feature = "core")]
#![feature(staged_api)]
#![staged_api]
#![crate_type = "rlib"]
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
@@ -58,15 +57,16 @@
html_playground_url = "http://play.rust-lang.org/")]
#![no_std]
#![allow(unknown_features, raw_pointer_derive)]
#![allow(unknown_features)] #![feature(intrinsics, lang_items)]
#![feature(simd, unsafe_destructor, slicing_syntax)]
#![feature(unboxed_closures)]
#![allow(unknown_features)] #![feature(int_uint)]
#![feature(on_unimplemented)]
#![allow(raw_pointer_derive)]
#![deny(missing_docs)]
// NOTE(stage0) remove cfg_attr after a snapshot
#![cfg_attr(not(stage0), allow(unused_mut))]
#![cfg_attr(not(stage0), allow(unused_mut))] // NOTE: remove after stage0 snap
#![feature(int_uint)]
#![feature(intrinsics, lang_items)]
#![feature(on_unimplemented)]
#![feature(simd, unsafe_destructor, slicing_syntax)]
#![feature(staged_api)]
#![feature(unboxed_closures)]
#[macro_use]
mod macros;