blob: 984e9a3aae6a25abf14ff5618515d20b073449d9 [file]
//@ edition: 2021
// Regression test for <https://github.com/rust-lang/rust/issues/40066>.
mod foo {
pub(in crate::bar) struct Foo;
//~^ ERROR visibilities can only be restricted to ancestor modules
}
mod bar {
pub(in crate::foo) struct Bar;
//~^ ERROR visibilities can only be restricted to ancestor modules
}
fn main() {}