rust/tests/ui/parser/issue-68987-unmatch-issue-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
653 B
Plaintext
Raw Normal View History

error: mismatched closing delimiter: `)`
--> $DIR/issue-68987-unmatch-issue-2.rs:3:32
|
LL | async fn obstest() -> Result<> {
| ^ unclosed delimiter
LL | let obs_connect = || -> Result<(), MyError) {
| ^ mismatched closing delimiter
2023-01-25 20:52:57 -06:00
error: unexpected closing delimiter: `}`
--> $DIR/issue-68987-unmatch-issue-2.rs:14:1
|
LL | let obs_connect = || -> Result<(), MyError) {
| - missing open `(` for this delimiter
...
2023-01-25 20:52:57 -06:00
LL | }
| ^ unexpected closing delimiter
error: aborting due to 2 previous errors