rust/tests/ui/parser/suggest-removing-semicolon-after-impl-trait-items.stderr
2023-01-11 09:32:08 +00:00

16 lines
399 B
Plaintext

error: non-item in item list
--> $DIR/suggest-removing-semicolon-after-impl-trait-items.rs:4:16
|
LL | trait Foo {
| - item list starts here
LL | fn bar() {};
| ^
| |
| non-item starts here
| help: consider removing this semicolon
LL | }
| - item list ends here
error: aborting due to previous error