Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
resolve
/
crate-in-paths.rs
blob: 7ebd259189d6d8f236546f0757c148d88c8a3345 [
file
]
// edition:2018
mod
bar
{
pub
(
crate
)
struct
Foo
;
}
fn
main
()
{
Foo
;
//~^ ERROR cannot find value `Foo` in this scope [E0425]
}