]> git.lizzy.rs Git - rust.git/blob - tests/ui/parser/issues/issue-48636.stderr
Rollup merge of #106648 - Nilstrieb:poly-cleanup, r=compiler-errors
[rust.git] / tests / ui / parser / issues / issue-48636.stderr
1 error[E0585]: found a documentation comment that doesn't document anything
2   --> $DIR/issue-48636.rs:7:5
3    |
4 LL | struct S {
5    |        - while parsing this struct
6 LL |     x: u8
7    |          - help: missing comma here: `,`
8 LL |     /// The ID of the parent core
9    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10    |
11    = help: doc comments must come before what they document, if a comment was intended use `//`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0585`.