rust/src/test/run-pass/use-crate-name-alias.rs
Haitao Li 13686b6778 Use real crate name in crate_map name
`use` statement may introduce an crate name alias. This patch always
uses the link attrbute "name" as the crate's name when building the
crate map.

Closes #1706
2012-04-07 22:08:54 +08:00

5 lines
53 B
Rust

// Issue #1706
use stdlib(name="std");
fn main() {}