rust/tests/ui/crashes/ice-1969.rs

16 lines
251 B
Rust

// run-pass
#![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()
}
}