about summary refs log tree commit diff
path: root/tests/ui/tuple/tuple-struct-fields/test.rs
blob: 29aabf4579b127362158427d1529e98b8ace1927 (plain)
1
2
3
4
5
6
7
8
9
mod foo {
    type T = ();
    struct S1(pub(in crate::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() {}