2018-09-06 12:41:12 +00:00
|
|
|
//@ run-pass
|
2018-07-13 19:38:49 +00:00
|
|
|
//@ edition:2018
|
|
|
|
|
2018-12-27 00:38:43 +00:00
|
|
|
#![allow(unused_imports)]
|
|
|
|
#![allow(non_camel_case_types)]
|
2018-07-13 19:38:49 +00:00
|
|
|
|
|
|
|
// Test that ambiguity errors are not emitted between `self::test` and
|
|
|
|
// `::test`, assuming the latter (crate) is not in `extern_prelude`.
|
|
|
|
mod test {
|
|
|
|
pub struct Foo(pub ());
|
|
|
|
}
|
|
|
|
use test::Foo;
|
|
|
|
|
|
|
|
// Test that qualified paths can refer to both the external crate and local item.
|
|
|
|
mod std {
|
|
|
|
pub struct io(pub ());
|
|
|
|
}
|
|
|
|
use ::std::io as std_io;
|
|
|
|
use self::std::io as local_io;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
Foo(());
|
2021-10-31 02:58:27 +00:00
|
|
|
let _ = std_io::stdout();
|
2018-07-13 19:38:49 +00:00
|
|
|
local_io(());
|
2018-09-13 20:18:39 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
// Test that having `std_io` in a module scope and a non-module
|
|
|
|
// scope is allowed, when both resolve to the same definition.
|
2018-09-15 14:52:59 +00:00
|
|
|
use ::std::io as std_io;
|
2018-09-13 20:18:39 +00:00
|
|
|
use std_io::stdout;
|
2021-10-31 02:58:27 +00:00
|
|
|
let _ = stdout();
|
2018-09-13 20:18:39 +00:00
|
|
|
}
|
2018-07-13 19:38:49 +00:00
|
|
|
}
|