blob: 00677090d78c5b22bb6983ee1dc55192cd8ab9d5 (
plain)
1
2
3
4
5
6
7
8
9
|
mod foo {
type T = ();
struct S1(pub(in foo) (), pub(T), pub(crate) (), pub(((), T)));
struct S2(pub((foo)) ());
//~^ ERROR expected one of `)` or `,`, found `(`
//~| ERROR cannot find type `foo` in this scope
}
fn main() {}
|