]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/recover-enum.rs
Rollup merge of #61419 - scottmcm:casing-is-on-strings, r=cramertj
[rust.git] / src / test / ui / parser / recover-enum.rs
1 fn main() {
2     enum Test {
3         Very
4         //~^ ERROR missing comma
5         Bad(usize)
6         //~^ ERROR missing comma
7         Stuff { a: usize }
8         //~^ ERROR missing comma
9         Here
10     }
11 }