]> git.proxmox.com Git - rustc.git/blame - 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
CommitLineData
f20569fa
XL
1// run-rustfix
2
3#![warn(clippy::tabs_in_doc_comments)]
4#[allow(dead_code)]
5
6///
7/// Struct to hold two strings:
8/// - first one
9/// - second one
10pub struct DoubleString {
11 ///
12 /// - First String:
13 /// - needs to be inside here
14 first_string: String,
15 ///
16 /// - Second String:
17 /// - needs to be inside here
18 second_string: String,
19}
20
21/// This is main
22fn main() {}