summaryrefslogtreecommitdiffstats
path: root/tests/ui/rust-2018/uniform-paths/ambiguity.rs
blob: 890e8b7b3c0378d8bc8886a5ab8e9eb8b67b8aa2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass
// edition:2018

#![allow(non_camel_case_types)]

use std::io; // OK

mod std {
    pub struct io;
}

fn main() {}