1 2 3 4 5 6 7 8 9 10
// edition:2018 mod bar { pub(crate) struct Foo; } fn main() { Foo; //~^ ERROR cannot find value `Foo` in this scope [E0425] }