rust/tests/ui/parser/parser-recovery-1.stderr

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

17 lines
441 B
Plaintext
Raw Normal View History

error: this file contains an unclosed delimiter
--> $DIR/parser-recovery-1.rs:10:54
2018-08-08 12:28:26 +00:00
|
2018-08-27 00:22:36 +00:00
LL | trait Foo {
| - unclosed delimiter
LL | fn bar() {
| - this delimiter might not be properly closed...
LL | let x = foo();
LL | }
| - ...as it matches this but it has different indentation
2018-08-27 00:22:36 +00:00
...
2019-03-09 12:03:44 +00:00
LL | }
| ^
2018-08-08 12:28:26 +00:00
error: aborting due to 1 previous error
2018-08-08 12:28:26 +00:00