Sign in
fuchsia
/
third_party
/
rust
/
2a3e17c6d5c49eeb770ade2fa660f98e9cce0ce0
/
.
/
tests
/
ui
/
imports
/
cycle-import-in-diff-module-0.rs
blob: 962603a89716cab52f6550c31502e80c21f1e562 [
file
] [
log
] [
blame
]
//@ check-pass
// https://github.com/rust-lang/rust/pull/124840#issuecomment-2098148587
mod
a
{
pub
(
crate
)
use
crate
::
S
;
}
mod
b
{
pub
struct
S
;
}
use
self
::
a
::
S
;
use
self
::
b
::*;
fn
main
()
{}