summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/doc-comment-in-stmt.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/doc-comment-in-stmt.stderr')
-rw-r--r--tests/ui/parser/doc-comment-in-stmt.stderr45
1 files changed, 28 insertions, 17 deletions
diff --git a/tests/ui/parser/doc-comment-in-stmt.stderr b/tests/ui/parser/doc-comment-in-stmt.stderr
index febfb600c..7aefd5c99 100644
--- a/tests/ui/parser/doc-comment-in-stmt.stderr
+++ b/tests/ui/parser/doc-comment-in-stmt.stderr
@@ -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