mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
16 lines
284 B
Rust
16 lines
284 B
Rust
#[allow(dead_code)]
|
|
|
|
/// Test for https://github.com/rust-lang/rust-clippy/issues/2865
|
|
|
|
struct Ice {
|
|
size: String,
|
|
}
|
|
|
|
impl<'a> From<String> for Ice {
|
|
fn from(_: String) -> Self {
|
|
let text = || "iceberg".to_string();
|
|
Self { size: text() }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|