2018-07-30 04:33:44 -05:00
|
|
|
#![allow(clippy::all)]
|
2017-08-21 05:57:33 -05:00
|
|
|
|
2019-02-06 00:45:57 -06:00
|
|
|
/// Test for https://github.com/rust-lang/rust-clippy/issues/1969
|
|
|
|
|
2018-12-09 16:26:16 -06:00
|
|
|
fn main() {}
|
2017-08-21 05:57:33 -05:00
|
|
|
|
|
|
|
pub trait Convert {
|
|
|
|
type Action: From<*const f64>;
|
|
|
|
|
|
|
|
fn convert(val: *const f64) -> Self::Action {
|
|
|
|
val.into()
|
|
|
|
}
|
|
|
|
}
|