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