Use phase(plugin) in tests
This commit is contained in:
parent
84243ed6e1
commit
ed41b71fbe
42 changed files with 43 additions and 43 deletions
|
|
@ -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";
|
||||
|
||||
|
|
|
|||
|
|
@ -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>() {
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
#![feature(phase)]
|
||||
#![crate_type = "rlib"]
|
||||
|
||||
#[phase(syntax, link)]
|
||||
#[phase(plugin, link)]
|
||||
extern crate core;
|
||||
|
||||
struct A;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue