1
Fork 0

Rollup merge of #23098 - brson:ignore-fast, r=alexcrichton

This commit is contained in:
Manish Goregaokar 2015-03-06 09:02:56 +05:30
commit f2a1cf2cb4
8 changed files with 0 additions and 8 deletions

View file

@ -9,7 +9,6 @@
// except according to those terms.
// aux-build:privacy-tuple-struct.rs
// ignore-fast
extern crate "privacy-tuple-struct" as other;

View file

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-fast doesn't like extern crate
extern crate libc;

View file

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-fast doesn't like extern crate
extern crate libc;
use std::ffi::CString;

View file

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-fast doesn't like extern crate
extern crate libc;

View file

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-fast doesn't like extern crate
extern crate libc;

View file

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-fast doesn't like extern crate
#![allow(unknown_features)]
#![feature(box_syntax)]

View file

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-fast doesn't like extern crate
extern crate libc;
use libc::c_int;

View file

@ -13,7 +13,6 @@ extern crate libc;
use std::ffi::{self, CString};
use libc::{c_char, c_int};
// ignore-fast doesn't like extern crate
extern {
fn sprintf(s: *mut c_char, format: *const c_char, ...) -> c_int;