]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/tests/ui/tabs_in_doc_comments.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / tabs_in_doc_comments.rs
diff --git a/src/tools/clippy/tests/ui/tabs_in_doc_comments.rs b/src/tools/clippy/tests/ui/tabs_in_doc_comments.rs
new file mode 100644 (file)
index 0000000..9db3416
--- /dev/null
@@ -0,0 +1,22 @@
+// run-rustfix
+
+#![warn(clippy::tabs_in_doc_comments)]
+#[allow(dead_code)]
+
+///
+/// Struct to hold two strings:
+///    - first         one
+///    - second        one
+pub struct DoubleString {
+    ///
+    ///        - First String:
+    ///                - needs to be inside here
+    first_string: String,
+    ///
+    ///        - Second String:
+    ///                - needs to be inside here
+    second_string: String,
+}
+
+/// This is main
+fn main() {}