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