summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3270/wrap.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/issue-3270/wrap.rs')
-rw-r--r--src/tools/rustfmt/tests/target/issue-3270/wrap.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/issue-3270/wrap.rs b/src/tools/rustfmt/tests/target/issue-3270/wrap.rs
new file mode 100644
index 000000000..7435c5f08
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-3270/wrap.rs
@@ -0,0 +1,13 @@
+// rustfmt-wrap_comments: true
+// rustfmt-version: Two
+
+// check that a line below max_width does not get over the limit when wrapping
+// it in a block comment
+fn func() {
+ let x = 42;
+ /*
+ let something = "one line line line line line line line line line line line line line
+ two lines
+ three lines";
+ */
+}