rust/tests/run-pass/ice-1969.rs

14 lines
197 B
Rust
Raw Normal View History

2018-07-30 04:33:44 -05:00
#![feature(tool_lints)]
2017-09-18 05:47:33 -05:00
2018-07-30 04:33:44 -05:00
#![allow(clippy::all)]
2017-08-21 05:57:33 -05:00
fn main() { }
pub trait Convert {
type Action: From<*const f64>;
fn convert(val: *const f64) -> Self::Action {
val.into()
}
}