mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
15 lines
171 B
Rust
15 lines
171 B
Rust
|
#![allow(unused)]
|
||
|
|
||
|
mod A {
|
||
|
pub(crate) type AA = ();
|
||
|
}
|
||
|
|
||
|
mod C {}
|
||
|
|
||
|
mod B {
|
||
|
use crate::C::{self, AA};
|
||
|
//~^ ERROR unresolved import `crate::C::AA`
|
||
|
}
|
||
|
|
||
|
fn main() {}
|