]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/tabs_in_doc_comments.fixed
bump version to 1.80.1+dfsg1-1~bpo12+pve1
[rustc.git] / src / tools / clippy / tests / ui / tabs_in_doc_comments.fixed
CommitLineData
f20569fa
XL
1#![warn(clippy::tabs_in_doc_comments)]
2#[allow(dead_code)]
3
4///
5/// Struct to hold two strings:
6/// - first one
7/// - second one
8pub struct DoubleString {
9 ///
10 /// - First String:
11 /// - needs to be inside here
12 first_string: String,
13 ///
14 /// - Second String:
15 /// - needs to be inside here
16 second_string: String,
17}
18
19/// This is main
20fn main() {}