]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/macro-mismatched-delim-paren-brace.stderr
Change syntax for TyAlias where clauses
[rust.git] / src / test / ui / parser / macro-mismatched-delim-paren-brace.stderr
1 error: unexpected closing delimiter: `}`
2   --> $DIR/macro-mismatched-delim-paren-brace.rs:5:1
3    |
4 LL | fn main() {
5    |           - this opening brace...
6 ...
7 LL |     }
8    |     - ...matches this closing brace
9 LL | }
10    | ^ unexpected closing delimiter
11
12 error: mismatched closing delimiter: `}`
13   --> $DIR/macro-mismatched-delim-paren-brace.rs:2:10
14    |
15 LL |     foo! (
16    |          ^ unclosed delimiter
17 LL |         bar, "baz", 1, 2.0
18 LL |     }
19    |     ^ mismatched closing delimiter
20
21 error: aborting due to 2 previous errors
22