]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issues/issue-60075.stderr
Rollup merge of #92399 - Veeupup:fix_vec_typo, r=Dylan-DPC
[rust.git] / src / test / ui / parser / issues / issue-60075.stderr
1 error: expected one of `.`, `;`, `?`, `else`, or an operator, found `}`
2   --> $DIR/issue-60075.rs:6:10
3    |
4 LL |         });
5    |          ^ expected one of `.`, `;`, `?`, `else`, or an operator
6
7 error: non-item in item list
8   --> $DIR/issue-60075.rs:6:11
9    |
10 LL | trait T {
11    |         - item list starts here
12 ...
13 LL |         });
14    |           ^ non-item starts here
15 ...
16 LL |     }
17    |     - item list ends here
18
19 error: mismatched closing delimiter: `)`
20   --> $DIR/issue-60075.rs:4:31
21    |
22 LL |     fn qux() -> Option<usize> {
23    |                               ^ unclosed delimiter
24 LL |         let _ = if true {
25 LL |         });
26    |          ^ mismatched closing delimiter
27
28 error: aborting due to 3 previous errors
29