// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // error-pattern:unused import // compile-flags:-W unused-imports 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; fn cc(p: point) -> str { return 2 * (p.x + p.y); } } } fn main() { cal({x:3, y:9}); }