'ignore-fast' directives do nothing

This commit is contained in:
Brian Anderson 2015-03-05 17:29:38 -08:00
parent f0c74f85f3
commit 8655e94abf
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;