summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/struct-field-type-including-single-colon.rs
blob: b7ad6d996f1aba2129b7902d71305e814b675a56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
mod foo {
    struct A;
    mod bar {
        struct B;
    }
}

struct Foo {
    a: foo:A,
    //~^ ERROR found single colon in a struct field type path
    //~| expected `,`, or `}`, found `:`
}

struct Bar {
    b: foo::bar:B,
    //~^ ERROR found single colon in a struct field type path
    //~| expected `,`, or `}`, found `:`
}

fn main() {}