2021-04-08 18:35:04 -07:00
|
|
|
error: this file contains an unclosed delimiter
|
2021-04-08 19:12:00 -07:00
|
|
|
--> $DIR/use-unclosed-brace.rs:12:14
|
2021-04-08 18:35:04 -07:00
|
|
|
|
|
|
|
|
LL | use foo::{bar, baz;
|
|
|
|
| - unclosed delimiter
|
|
|
|
...
|
2021-04-08 19:12:00 -07:00
|
|
|
LL | fn main() {}
|
|
|
|
| ^
|
2021-04-08 18:35:04 -07:00
|
|
|
|
|
|
|
error: expected one of `,`, `::`, `as`, or `}`, found `;`
|
2021-08-27 10:57:28 +00:00
|
|
|
--> $DIR/use-unclosed-brace.rs:4:10
|
2021-04-08 18:35:04 -07:00
|
|
|
|
|
|
|
|
LL | use foo::{bar, baz;
|
2021-08-27 10:57:28 +00:00
|
|
|
| ^ ^
|
2021-04-08 19:12:00 -07:00
|
|
|
| | |
|
|
|
|
| | expected one of `,`, `::`, `as`, or `}`
|
|
|
|
| | help: `}` may belong here
|
2021-04-08 18:35:04 -07:00
|
|
|
| unclosed delimiter
|
|
|
|
|
2021-04-08 19:12:00 -07:00
|
|
|
error: expected item, found `}`
|
|
|
|
--> $DIR/use-unclosed-brace.rs:12:14
|
2021-04-08 18:35:04 -07:00
|
|
|
|
|
|
|
|
LL | fn main() {}
|
2021-04-08 19:12:00 -07:00
|
|
|
| ^ expected item
|
2021-04-08 18:35:04 -07:00
|
|
|
|
2021-04-08 19:12:00 -07:00
|
|
|
error: aborting due to 3 previous errors
|
2021-04-08 18:35:04 -07:00
|
|
|
|