Use phase(plugin) in tests

This commit is contained in:
Keegan McAllister 2014-05-24 21:24:35 -07:00
parent 84243ed6e1
commit ed41b71fbe
42 changed files with 43 additions and 43 deletions

View file

@ -13,6 +13,6 @@
#![crate_type = "rlib"]
#![feature(phase)]
#[phase(syntax)] extern crate t1 = "issue-13560-1";
#[phase(syntax, link)] extern crate t2 = "issue-13560-2";
#[phase(plugin)] extern crate t1 = "issue-13560-1";
#[phase(plugin, link)] extern crate t2 = "issue-13560-2";

View file

@ -9,7 +9,7 @@
// except according to those terms.
#![feature(phase)]
#[phase(syntax, link)] extern crate log;
#[phase(plugin, link)] extern crate log;
extern crate debug;
pub fn foo<T>() {

View file

@ -17,7 +17,7 @@
#![feature(phase)]
#![crate_type = "rlib"]
#[phase(syntax, link)]
#[phase(plugin, link)]
extern crate core;
struct A;