2016-09-05 01:47:23 -05:00
|
|
|
// aux-build:a.rs
|
|
|
|
// aux-build:b.rs
|
|
|
|
// revisions:rpass1 rpass2
|
|
|
|
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(rpass1)]
|
|
|
|
extern crate a;
|
|
|
|
#[cfg(rpass1)]
|
|
|
|
extern crate b;
|
|
|
|
|
|
|
|
#[cfg(rpass2)]
|
|
|
|
extern crate b;
|
|
|
|
#[cfg(rpass2)]
|
|
|
|
extern crate a;
|
|
|
|
|
|
|
|
use a::A;
|
|
|
|
use b::B;
|
|
|
|
|
2020-07-17 03:47:04 -05:00
|
|
|
//? #[rustc_clean(label="typeck", cfg="rpass2")]
|
2016-09-05 01:47:23 -05:00
|
|
|
pub fn main() {
|
|
|
|
A + B;
|
|
|
|
}
|