// Copyright 2018 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. // run-pass // aux-build:some_crate.rs // edition:2018 use some_crate as some_name; mod foo { pub use crate::some_name::*; } fn main() { ::some_crate::hello(); some_name::hello(); foo::hello(); }