Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
5f6fa960c254dfda8ba1d5dc2fb281b6908d8005
/
.
/
tests
/
ui
/
resolve
/
crate-in-paths.rs
blob: fad1add40afa94f3e87a9e6eda2cba456c5a77c2 [
file
]
//@ edition:2018
mod
bar
{
pub
(
crate
)
struct
Foo
;
}
fn
main
()
{
Foo
;
//~^ ERROR cannot find value `Foo` in this scope [E0425]
}