rust/tests/ui/crashes/ice-1969.rs

14 lines
238 B
Rust
Raw Normal View History

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