about summary refs log tree commit diff
path: root/src/tools/rustfmt/tests/source/markdown-comment-with-options.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/markdown-comment-with-options.rs')
-rw-r--r--src/tools/rustfmt/tests/source/markdown-comment-with-options.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/markdown-comment-with-options.rs b/src/tools/rustfmt/tests/source/markdown-comment-with-options.rs
new file mode 100644
index 00000000000..2c4d6a5cc2b
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/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);
+}