Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
rfc-1560-warning-cycle.rs
blob: cfa7179fb6b57577531672a17ddbe9e5b193fec0 [
file
] [
log
] [
blame
] [
edit
]
pub
struct
Foo
;
mod
bar
{
struct
Foo
;
mod
baz
{
use
*;
use
bar
::*;
fn
f
(
_
:
Foo
)
{}
//~ ERROR `Foo` is ambiguous
}
}
fn
main
()
{}