mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
13 lines
238 B
Rust
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()
|
|
}
|
|
}
|