mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
13 lines
197 B
Rust
13 lines
197 B
Rust
#![feature(tool_lints)]
|
|
|
|
#![allow(clippy::all)]
|
|
|
|
fn main() { }
|
|
|
|
pub trait Convert {
|
|
type Action: From<*const f64>;
|
|
|
|
fn convert(val: *const f64) -> Self::Action {
|
|
val.into()
|
|
}
|
|
}
|