blob: 5e0d6cbdfef9e622d9170bd6bb3821778ca56e62 [file] [log] [blame]
// testing whether the lookup mechanism picks up types
// defined in the outside crate
#![crate_type="lib"]
mod foo {
// should not be suggested => foo is private
pub trait T {}
}
// should be suggested
pub use foo::T;