mod orange {mod green {struct Foo;pub(in orange)struct Bar;pub struct Baz;}fnbrown() {let _ = green::Foo;// { dg-error "definition is private in this context" }let _ = green::Bar;let _ = green::Baz;let _: green::Foo;// { dg-error "definition is private in this context" }fnany(a0: green::Foo, a1: green::Bar) {}// { dg-error "20:definition is private in this context" }}}