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