Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
issue-28388-2.rs
blob: 024b0388bc609e15afa9dc764cd2adb9c6a2d9fb [
file
] [
log
] [
blame
] [
edit
]
// Prefix in imports with empty braces should be resolved and checked privacy, stability, etc.
mod
m
{
mod
n
{}
}
use
m
::
n
::{};
//~^ ERROR module `n` is private
fn
main
()
{}