rust/tests/ui/crashes/ice-1969.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

13 lines
238 B
Rust

#![allow(clippy::all)]
/// Test for https://github.com/rust-lang/rust-clippy/issues/1969
fn main() {}
pub trait Convert {
type Action: From<*const f64>;
fn convert(val: *const f64) -> Self::Action {
val.into()
}
}