Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
imports
/
overwrite-different-ambig.rs
blob: 9aee63e189731923ef366c6b3b90f15c01b10996 [
file
] [
edit
]
//@ check-pass
//@ edition:2024
mod
a
{
mod
b
{
mod
c
{
pub
struct
E
;
}
mod
d
{
mod
c
{
pub
struct
E
;
}
mod
d
{
#[
derive
(
Debug
)]
pub
struct
E
;
}
pub
use
c
::*;
use
d
::*;
}
use
c
::*;
use
d
::*;
}
}
fn
main
()
{}