2024-02-16 20:02:50 +00:00
|
|
|
//@ edition:2018
|
2018-07-16 15:09:01 +00:00
|
|
|
|
2018-06-09 14:04:44 +00:00
|
|
|
mod bar {
|
2022-05-21 01:06:44 +00:00
|
|
|
pub(crate) struct Foo;
|
2018-06-09 14:04:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
Foo;
|
|
|
|
//~^ ERROR cannot find value `Foo` in this scope [E0425]
|
|
|
|
}
|