mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 08:51:17 +00:00
17 lines
229 B
Rust
17 lines
229 B
Rust
// 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() {}
|