2011-11-10 09:31:55 -06:00
|
|
|
// error-pattern:unused import
|
2012-04-12 19:30:52 -05:00
|
|
|
// compile-flags:-W unused-imports
|
2011-11-10 09:31:55 -06:00
|
|
|
import cal = bar::c::cc;
|
|
|
|
|
|
|
|
mod foo {
|
|
|
|
type point = {x: int, y: int};
|
|
|
|
type square = {p: point, h: uint, w: uint};
|
|
|
|
}
|
|
|
|
|
|
|
|
mod bar {
|
|
|
|
mod c {
|
|
|
|
import foo::point;
|
|
|
|
import foo::square;
|
|
|
|
fn cc(p: point) -> str { ret 2 * (p.x + p.y); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
cal({x:3, y:9});
|
|
|
|
}
|