]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/use-unclosed-brace.stderr
Auto merge of #107688 - lukas-code:projection-with-lifetime, r=jackh726
[rust.git] / tests / ui / parser / use-unclosed-brace.stderr
1 error: this file contains an unclosed delimiter
2   --> $DIR/use-unclosed-brace.rs:12:14
3    |
4 LL | use foo::{bar, baz;
5    |          - unclosed delimiter
6 ...
7 LL | fn main() {}
8    |              ^
9
10 error: expected one of `,`, `::`, `as`, or `}`, found `;`
11   --> $DIR/use-unclosed-brace.rs:4:10
12    |
13 LL | use foo::{bar, baz;
14    |          ^        ^
15    |          |        |
16    |          |        expected one of `,`, `::`, `as`, or `}`
17    |          |        help: `}` may belong here
18    |          unclosed delimiter
19
20 error: expected item, found `}`
21   --> $DIR/use-unclosed-brace.rs:12:14
22    |
23 LL | fn main() {}
24    |              ^ expected item
25
26 error: aborting due to 3 previous errors
27