DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb12u3 / 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] }