2018-09-06 07:41:12 -05:00
|
|
|
// run-pass
|
2018-07-13 14:38:49 -05:00
|
|
|
// edition:2018
|
|
|
|
|
2018-12-26 18:38:43 -06:00
|
|
|
#![allow(unused_imports)]
|
|
|
|
#![allow(non_camel_case_types)]
|
2018-07-13 14:38:49 -05: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-30 21:58:27 -05:00
|
|
|
let _ = std_io::stdout();
|
2018-07-13 14:38:49 -05:00
|
|
|
local_io(());
|
2018-09-13 15:18:39 -05: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 09:52:59 -05:00
|
|
|
use ::std::io as std_io;
|
2018-09-13 15:18:39 -05:00
|
|
|
use std_io::stdout;
|
2021-10-30 21:58:27 -05:00
|
|
|
let _ = stdout();
|
2018-09-13 15:18:39 -05:00
|
|
|
}
|
2018-07-13 14:38:49 -05:00
|
|
|
}
|