]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-103869.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / ui / parser / issue-103869.rs
1 enum VecOrMap{
2     vec: Vec<usize>,
3     //~^ ERROR expected one of `(`, `,`, `=`, `{`, or `}`, found `:`
4     //~| HELP: enum variants can be `Variant`, `Variant = <integer>`, `Variant(Type, ..., TypeN)` or `Variant { fields: Types }`
5     //~| ERROR expected item, found `:`
6     map: HashMap<String,usize>
7 }
8
9 fn main() {}