rust/tests/ui/crashes/ice-2865.rs
Eduardo Broto 6b59675449 Remove run-pass annotations from crash tests
It does not seem to be necessary
2020-09-25 15:19:36 +02:00

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