2012-04-08 02:00:00 +08:00
|
|
|
// aux-build:crateresolve4a-1.rs
|
|
|
|
// aux-build:crateresolve4a-2.rs
|
|
|
|
#[link(name = "crateresolve4b", vers = "0.1")];
|
|
|
|
#[crate_type = "lib"];
|
2012-09-24 17:29:20 -07:00
|
|
|
#[legacy_exports];
|
2012-04-08 02:00:00 +08:00
|
|
|
|
2012-09-11 17:46:20 -07:00
|
|
|
extern mod crateresolve4a(vers="0.2");
|
2012-04-08 02:00:00 +08:00
|
|
|
|
|
|
|
fn f() -> int { crateresolve4a::g() }
|