DEBSOURCES
Skip Quicknav
sources / rustc / 1.70.0%2Bdfsg1-9 / tests / ui / resolve / crate-in-paths.rs
12345678910
// edition:2018 mod bar { pub(crate) struct Foo; } fn main() { Foo; //~^ ERROR cannot find value `Foo` in this scope [E0425] }