mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
21 lines
383 B
Rust
21 lines
383 B
Rust
|
#![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() {}
|