summaryrefslogtreecommitdiffstats
path: root/tests/ui/rust-2018/uniform-paths/ambiguity-nested.rs
blob: 0ef580d7aa53da8c753326b66380875705dce82e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// check-pass
// edition:2018

// This test is similar to `ambiguity.rs`, but nested in a module.

#![allow(non_camel_case_types)]

mod foo {
    pub use std::io; // OK

    mod std {
        pub struct io;
    }
}

fn main() {}