blob: 681d10a750144b01722e74fb1985c7240841046a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//@ check-pass
#![allow(dead_code, clippy::extra_unused_lifetimes)]
// 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() {}
|