mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 21:23:56 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
13 lines
216 B
Rust
13 lines
216 B
Rust
#[allow(dead_code)]
|
|
struct Ice {
|
|
size: String,
|
|
}
|
|
|
|
impl<'a> From<String> for Ice {
|
|
fn from(_: String) -> Self {
|
|
let text = || "iceberg".to_string();
|
|
Self { size: text() }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|