DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.85.0%2Bdfsg3-1~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] }