Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
imports
/
append-import-suggestion.rs
blob: 6b75804b86fcbeb17428f92e3e7f81a2b6fc11f0 [
file
] [
log
] [
blame
]
// https://github.com/rust-lang/rust/issues/114884
mod
mod1
{
pub
trait
TraitA
{}
}
mod
mod2
{
mod
sub_mod
{
use
super
::
super
::
mod1
::
TraitA
;
}
}
use
mod2
::{
sub_mod
::
TraitA
};
//~^ ERROR: module `sub_mod` is private
fn
main
()
{}