summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-3055/original.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/source/issue-3055/original.rs')
-rw-r--r--src/tools/rustfmt/tests/source/issue-3055/original.rs43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/source/issue-3055/original.rs b/src/tools/rustfmt/tests/source/issue-3055/original.rs
new file mode 100644
index 000000000..45e58473a
--- /dev/null
+++ b/src/tools/rustfmt/tests/source/issue-3055/original.rs
@@ -0,0 +1,43 @@
+// rustfmt-wrap_comments: true
+// rustfmt-format_code_in_doc_comments: true
+
+/// Vestibulum elit nibh, rhoncus non, euismod sit amet, pretium eu, enim. Nunc commodo ultricies dui.
+///
+/// Should not format with text attribute
+/// ```text
+/// .--------------.
+/// | v
+/// Park <- Idle -> Poll -> Probe -> Download -> Install -> Reboot
+/// ^ ^ ' ' '
+/// ' ' ' ' '
+/// ' `--------' ' '
+/// `---------------' ' '
+/// `--------------------------' '
+/// `-------------------------------------'
+/// ```
+///
+/// Should not format with ignore attribute
+/// ```text
+/// .--------------.
+/// | v
+/// Park <- Idle -> Poll -> Probe -> Download -> Install -> Reboot
+/// ^ ^ ' ' '
+/// ' ' ' ' '
+/// ' `--------' ' '
+/// `---------------' ' '
+/// `--------------------------' '
+/// `-------------------------------------'
+/// ```
+///
+/// Should format with rust attribute
+/// ```rust
+/// let x =
+/// 42;
+/// ```
+///
+/// Should format with no attribute as it defaults to rust
+/// ```
+/// let x =
+/// 42;
+/// ```
+fn func() {}