summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issue-103869.rs
blob: 28c442bdd632dd62ebaa7a5ef02f3419fbebda67 (plain)
1
2
3
4
5
6
7
8
9
enum VecOrMap{
    vec: Vec<usize>,
    //~^ ERROR expected one of `(`, `,`, `=`, `{`, or `}`, found `:`
    //~| HELP: enum variants can be `Variant`, `Variant = <integer>`, `Variant(Type, ..., TypeN)` or `Variant { fields: Types }`
    //~| ERROR expected item, found `:`
    map: HashMap<String,usize>
}

fn main() {}