summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-5234.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/rustfmt/tests/target/issue-5234.rs')
-rw-r--r--src/tools/rustfmt/tests/target/issue-5234.rs47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/tools/rustfmt/tests/target/issue-5234.rs b/src/tools/rustfmt/tests/target/issue-5234.rs
new file mode 100644
index 000000000..7ee9e46d1
--- /dev/null
+++ b/src/tools/rustfmt/tests/target/issue-5234.rs
@@ -0,0 +1,47 @@
+// rustfmt-format_code_in_doc_comments: true
+
+/// ```
+/// ```
+fn foo() {}
+
+/// ```
+/// Something
+/// ```
+fn foo() {}
+
+/// ```
+/// ```
+fn foo() {}
+
+/// /// ```
+fn foo() {}
+
+/// /// ```
+/// ```
+/// ```
+/// ```
+fn foo() {}
+
+fn foo() {
+ /// ```
+ /// ```
+ struct bar {}
+}
+
+/// ```
+/// fn com() {
+/// let i = 5;
+///
+/// let j = 6;
+/// }
+/// ```
+fn foo() {}
+
+fn foo() {
+ /// ```
+ /// fn com() {
+ /// let i = 5;
+ /// }
+ /// ```
+ struct bar {}
+}