summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/tabs_in_doc_comments.rs
blob: 9db3416e6596409c385bf20c1a40e746a24b1b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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() {}