blob: 074d7519392aaa505d7e37012ced9e1ecbc11a4b [file] [log] [blame]
//@ run-rustfix
struct VecOrMap {
//~^ HELP: perhaps you meant to use `struct` here
vec: Vec<usize>,
//~^ ERROR expected one of `(`, `,`, `=`, `{`, or `}`, found `:`
//~| HELP: enum variants can be `Variant`, `Variant = <integer>`, `Variant(Type, ..., TypeN)` or `Variant { fields: Types }`
}
fn main() {
let o = VecOrMap { vec: vec![1, 2, 3] };
println!("{:?}", o.vec);
}