Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
resolve
/
crate-in-paths.rs
blob: fad1add40afa94f3e87a9e6eda2cba456c5a77c2 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
mod
bar
{
pub
(
crate
)
struct
Foo
;
}
fn
main
()
{
Foo
;
//~^ ERROR cannot find value `Foo` in this scope [E0425]
}