rust-clippy/tests/ui/crashes/ice-2865.rs

17 lines
284 B
Rust
Raw Normal View History

#[allow(dead_code)]
/// Test for https://github.com/rust-lang/rust-clippy/issues/2865
struct Ice {
2018-12-09 22:26:16 +00:00
size: String,
}
impl<'a> From<String> for Ice {
fn from(_: String) -> Self {
let text = || "iceberg".to_string();
Self { size: text() }
}
}
fn main() {}