summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/doc-comment-in-stmt.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/doc-comment-in-stmt.fixed')
-rw-r--r--tests/ui/parser/doc-comment-in-stmt.fixed27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/ui/parser/doc-comment-in-stmt.fixed b/tests/ui/parser/doc-comment-in-stmt.fixed
new file mode 100644
index 000000000..4b3ecccf6
--- /dev/null
+++ b/tests/ui/parser/doc-comment-in-stmt.fixed
@@ -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);
+}