rust-clippy/tests/run-pass/ice-2865.rs
2019-01-08 21:46:39 +01:00

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() {}