forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 rust-lang#65329.
- Loading branch information
Showing
5 changed files
with
85 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// run-rustfix | ||
#![allow(unused)] | ||
fn foo() -> bool { | ||
false | ||
// !self.allow_ty_infer() | ||
//~^ ERROR found doc comment | ||
} | ||
|
||
fn bar() -> bool { | ||
false | ||
/* ! bar */ //~ ERROR found doc comment | ||
} | ||
|
||
fn baz() -> i32 { | ||
1 /* * baz */ //~ ERROR found doc comment | ||
} | ||
|
||
fn quux() -> i32 { | ||
2 // / quux | ||
//~^ ERROR found doc comment | ||
} | ||
|
||
fn main() { | ||
let x = 0; | ||
let y = x.max(1) // !foo //~ ERROR found doc comment | ||
.min(2); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,61 @@ | ||
error: expected one of `.`, `;`, `?`, `}`, or an operator, found doc comment `//!self.allow_ty_infer()` | ||
--> $DIR/doc-comment-in-stmt.rs:3:5 | ||
--> $DIR/doc-comment-in-stmt.rs:5:5 | ||
| | ||
LL | false | ||
| - expected one of `.`, `;`, `?`, `}`, or an operator | ||
LL | //!self.allow_ty_infer() | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^ unexpected token | ||
| | ||
help: add a space before `!` to use a regular comment | ||
help: add a space before `!` to write a regular comment | ||
| | ||
LL | // !self.allow_ty_infer() | ||
| ~~~~ | ||
| + | ||
|
||
error: expected one of `.`, `;`, `?`, `}`, or an operator, found doc comment `/*! bar */` | ||
--> $DIR/doc-comment-in-stmt.rs:9:5 | ||
--> $DIR/doc-comment-in-stmt.rs:11:5 | ||
| | ||
LL | false | ||
| - expected one of `.`, `;`, `?`, `}`, or an operator | ||
LL | /*! bar */ | ||
| ^^^^^^^^^^ unexpected token | ||
| | ||
help: add a space before `!` to use a regular comment | ||
help: add a space before `!` to write a regular comment | ||
| | ||
LL | /* ! bar */ | ||
| ~~~~ | ||
| + | ||
|
||
error: expected one of `.`, `;`, `?`, `}`, or an operator, found doc comment `/** baz */` | ||
--> $DIR/doc-comment-in-stmt.rs:13:7 | ||
--> $DIR/doc-comment-in-stmt.rs:15:7 | ||
| | ||
LL | 1 /** baz */ | ||
| ^^^^^^^^^^ expected one of `.`, `;`, `?`, `}`, or an operator | ||
| | ||
help: add a space before `*` to use a regular comment | ||
help: add a space before the last `*` to write a regular comment | ||
| | ||
LL | 1 /* * baz */ | ||
| ~~~~ | ||
| + | ||
|
||
error: expected one of `.`, `;`, `?`, `}`, or an operator, found doc comment `/*! quux */` | ||
--> $DIR/doc-comment-in-stmt.rs:17:7 | ||
error: expected one of `.`, `;`, `?`, `}`, or an operator, found doc comment `/// quux` | ||
--> $DIR/doc-comment-in-stmt.rs:19:7 | ||
| | ||
LL | 2 /*! quux */ | ||
| ^^^^^^^^^^^ expected one of `.`, `;`, `?`, `}`, or an operator | ||
LL | 2 /// quux | ||
| ^^^^^^^^ expected one of `.`, `;`, `?`, `}`, or an operator | ||
| | ||
help: add a space before `!` to use a regular comment | ||
help: add a space before the last `/` to write a regular comment | ||
| | ||
LL | 2 /* ! quux */ | ||
| ~~~~ | ||
LL | 2 // / quux | ||
| + | ||
|
||
error: aborting due to 4 previous errors | ||
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 | ||
| + | ||
|
||
error: aborting due to 5 previous errors | ||
|