rust/tests/run-pass/ice-1969.rs
2017-10-03 12:07:24 +02:00

13 lines
169 B
Rust

#![allow(clippy)]
fn main() { }
pub trait Convert {
type Action: From<*const f64>;
fn convert(val: *const f64) -> Self::Action {
val.into()
}
}