rust/src/test/compile-fail/unused-imports-warn.rs

24 lines
432 B
Rust
Raw Normal View History

// error-pattern:unused import
// compile-flags:-W unused-imports
2012-09-05 14:32:05 -05:00
use cal = bar::c::cc;
mod foo {
#[legacy_exports];
type point = {x: int, y: int};
type square = {p: point, h: uint, w: uint};
}
mod bar {
#[legacy_exports];
mod c {
#[legacy_exports];
use foo::point;
use foo::square;
2012-08-01 19:30:05 -05:00
fn cc(p: point) -> str { return 2 * (p.x + p.y); }
}
}
fn main() {
cal({x:3, y:9});
}