summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/wrap_comments/true.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/configs/wrap_comments/true.rs')
-rw-r--r--src/tools/rustfmt/tests/target/configs/wrap_comments/true.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/configs/wrap_comments/true.rs b/src/tools/rustfmt/tests/target/configs/wrap_comments/true.rs
new file mode 100644
index 000000000..4096fd4d8
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/configs/wrap_comments/true.rs
@@ -0,0 +1,20 @@
+// rustfmt-wrap_comments: true
+// rustfmt-max_width: 50
+// Wrap comments
+
+fn main() {
+ // Lorem ipsum dolor sit amet, consectetur
+ // adipiscing elit, sed do eiusmod tempor
+ // incididunt ut labore et dolore magna
+ // aliqua. Ut enim ad minim veniam, quis
+ // nostrud exercitation ullamco laboris nisi
+ // ut aliquip ex ea commodo consequat.
+}
+
+fn code_block() {
+ // ```rust
+ // let x = 3;
+ //
+ // println!("x = {}", x);
+ // ```
+}