rust/tests/ui/parser/issues/issue-2354.stderr

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

17 lines
410 B
Plaintext
Raw Normal View History

error: this file contains an unclosed delimiter
--> $DIR/issue-2354.rs:15:52
2018-09-05 09:03:02 -05:00
|
2019-03-09 06:03:44 -06:00
LL | fn foo() {
| - unclosed delimiter
LL | match Some(10) {
| - this delimiter might not be properly closed...
2018-09-05 09:03:02 -05:00
...
LL | }
| - ...as it matches this but it has different indentation
...
2019-03-09 06:03:44 -06:00
LL |
| ^
error: aborting due to previous error
2018-09-05 09:03:02 -05:00