summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/markdown-comment-with-options.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/markdown-comment-with-options.rs')
-rw-r--r--src/tools/rustfmt/tests/target/markdown-comment-with-options.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/markdown-comment-with-options.rs b/src/tools/rustfmt/tests/target/markdown-comment-with-options.rs
new file mode 100644
index 000000000..ede2bc0d0
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/markdown-comment-with-options.rs
@@ -0,0 +1,17 @@
+// rustfmt-wrap_comments: true
+
+// Preserve two trailing whitespaces in doc comment,
+// but trim any whitespaces in normal comment.
+
+//! hello world
+//! hello world
+
+/// hello world
+/// hello world
+/// hello world
+fn foo() {
+ // hello world
+ // hello world
+ let x = 3;
+ println!("x = {}", x);
+}