blob: 96a8fe6c24d5610f8a16df06f98df43020e8c4a2 [file] [log] [blame]
#![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()
}
}