Skip to content

Commit

Permalink
Auto merge of #116965 - estebank:issue-65329, r=cjgillot
Browse files Browse the repository at this point in the history
Move where doc comment meant as comment check

The new place makes more sense and covers more cases beyond individual statements.

```
error: expected one of `.`, `;`, `?`, `else`, or an operator, found doc comment `//!foo
  --> $DIR/doc-comment-in-stmt.rs:25:22
   |
LL |     let y = x.max(1) //!foo
   |                      ^^^^^^ expected one of `.`, `;`, `?`, `else`, or an operator
   |
help: add a space before `!` to write a regular comment
   |
LL |     let y = x.max(1) // !foo
   |                        +
```

Fix #65329.
  • Loading branch information
bors committed Oct 20, 2023
2 parents 3b2dd7b + 8b833ab commit 616946c
Showing 0 changed files with 0 additions and 0 deletions.

0 comments on commit 616946c

Please sign in to comment.