rust/src/test/ui/parser/issue-2354.stderr

17 lines
413 B
Plaintext
Raw Normal View History

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