blob: 837ec9df31ab107e8da528b818b55c2480d94ee1 [file] [log] [blame]
// 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()
}
}