Fix rollup (remove slicing_syntax)

This commit is contained in:
Manish Goregaokar 2015-02-15 19:07:14 +05:30
parent b1a46db649
commit f0f8be2a2e
24 changed files with 9 additions and 24 deletions

View File

@ -16,7 +16,7 @@
#![feature(io)]
#![feature(path)]
#![feature(rustc_private)]
#![feature(slicing_syntax, unboxed_closures)]
#![feature(unboxed_closures)]
#![feature(std_misc)]
#![feature(test)]
#![feature(unicode)]

View File

@ -27,7 +27,6 @@
#![feature(box_patterns)]
#![feature(core)]
#![feature(hash)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
#![feature(unboxed_closures)]
#![feature(unicode)]

View File

@ -52,7 +52,6 @@
//! interval `[a, b)`:
//!
//! ```rust
//! #![feature(slicing_syntax)]
//! fn main() {
//! let numbers = [0, 1, 2];
//! let last_numbers = &numbers[1..3];

View File

@ -64,7 +64,7 @@
#![feature(int_uint)]
#![feature(intrinsics, lang_items)]
#![feature(on_unimplemented)]
#![feature(simd, unsafe_destructor, slicing_syntax)]
#![feature(simd, unsafe_destructor)]
#![feature(staged_api)]
#![feature(unboxed_closures)]

View File

@ -11,7 +11,7 @@
#![feature(box_syntax)]
#![feature(int_uint)]
#![feature(unboxed_closures)]
#![feature(unsafe_destructor, slicing_syntax)]
#![feature(unsafe_destructor)]
#![allow(deprecated)] // rand
extern crate core;

View File

@ -25,7 +25,6 @@
html_playground_url = "http://play.rust-lang.org/")]
#![feature(int_uint)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
#![feature(unicode)]

View File

@ -91,7 +91,6 @@
#![deny(missing_docs)]
#![feature(collections)]
#![feature(int_uint)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
#![cfg_attr(test, feature(rustc_private))]

View File

@ -273,7 +273,6 @@
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/nightly/")]
#![feature(slicing_syntax)]
#![feature(int_uint)]
#![feature(collections)]
#![feature(core)]

View File

@ -168,7 +168,6 @@
#![deny(missing_docs)]
#![feature(staged_api)]
#![feature(slicing_syntax)]
#![feature(box_syntax)]
#![feature(int_uint)]
#![feature(core)]

View File

@ -30,7 +30,6 @@
#![feature(int_uint)]
#![feature(io)]
#![feature(rustc_private)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
extern crate serialize;

View File

@ -36,7 +36,7 @@
#![feature(quote)]
#![feature(rustc_diagnostic_macros)]
#![feature(rustc_private)]
#![feature(slicing_syntax, unsafe_destructor)]
#![feature(unsafe_destructor)]
#![feature(staged_api)]
#![feature(std_misc)]
#![feature(unicode)]

View File

@ -35,7 +35,7 @@
#![feature(quote)]
#![feature(rustc_diagnostic_macros)]
#![feature(rustc_private)]
#![feature(slicing_syntax, unsafe_destructor)]
#![feature(unsafe_destructor)]
#![feature(staged_api)]
#![feature(std_misc)]
#![feature(unicode)]

View File

@ -24,7 +24,6 @@
#![feature(int_uint)]
#![feature(rustc_diagnostic_macros)]
#![feature(rustc_private)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
#![feature(std_misc)]

View File

@ -37,7 +37,7 @@
#![feature(quote)]
#![feature(rustc_diagnostic_macros)]
#![feature(rustc_private)]
#![feature(slicing_syntax, unsafe_destructor)]
#![feature(unsafe_destructor)]
#![feature(staged_api)]
#![feature(std_misc)]
#![feature(unicode)]

View File

@ -83,7 +83,7 @@ This API is completely unstable and subject to change.
#![feature(quote)]
#![feature(rustc_diagnostic_macros)]
#![feature(rustc_private)]
#![feature(slicing_syntax, unsafe_destructor)]
#![feature(unsafe_destructor)]
#![feature(staged_api)]
#[macro_use] extern crate log;

View File

@ -30,7 +30,6 @@
#![feature(os)]
#![feature(path)]
#![feature(rustc_private)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
#![feature(std_misc)]
#![feature(test)]

View File

@ -33,7 +33,6 @@ Core encoding and decoding interfaces.
#![feature(path)]
#![feature(hash)]
#![feature(rustc_private)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
#![feature(std_misc)]
#![feature(unicode)]

View File

@ -32,7 +32,6 @@ use sys_common;
///
/// ```rust,no_run
/// # #![allow(unused_must_use)]
/// #![feature(slicing_syntax)]
///
/// use std::old_io::net::udp::UdpSocket;
/// use std::old_io::net::ip::{Ipv4Addr, SocketAddr};

View File

@ -35,7 +35,6 @@
#![feature(path)]
#![feature(quote, unsafe_destructor)]
#![feature(rustc_private)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
#![feature(std_misc)]
#![feature(unicode)]

View File

@ -57,7 +57,6 @@
#![feature(io)]
#![feature(path)]
#![feature(rustc_private)]
#![feature(slicing_syntax)]
#![feature(staged_api)]
#![feature(std_misc)]
#![feature(unicode)]

View File

@ -32,7 +32,7 @@
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/nightly/")]
#![feature(asm, slicing_syntax)]
#![feature(asm)]
#![feature(box_syntax)]
#![feature(collections)]
#![feature(core)]

View File

@ -31,7 +31,6 @@
html_playground_url = "http://play.rust-lang.org/")]
#![feature(no_std)]
#![no_std]
#![feature(slicing_syntax)]
#![feature(core)]
extern crate core;

View File

@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![feature(slicing_syntax, box_syntax)]
#![feature(box_syntax)]
#![feature(collections)]
#![feature(core)]
#![feature(io)]

View File

@ -10,7 +10,6 @@
// Test that the precedence of ranges is correct
#![feature(slicing_syntax)]
struct Foo {
foo: uint,