rust/src/test/run-pass/crateresolve1.rs
Brian Anderson 9c88e5ef5a test: Refactor the crateresolve tests
Keep their aux builds from stomping on each other
2012-04-06 10:58:03 -07:00

11 lines
196 B
Rust

// xfail-fast
// aux-build:crateresolve1-1.rs
// aux-build:crateresolve1-2.rs
// aux-build:crateresolve1-3.rs
use crateresolve1(vers = "0.2");
fn main() {
assert crateresolve1::f() == 20;
}