mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
16 lines
320 B
Rust
16 lines
320 B
Rust
// run-pass
|
|
#[derive(Debug)]
|
|
struct Matrix4<S>(#[allow(unused_tuple_struct_fields)] S);
|
|
trait POrd<S> {}
|
|
|
|
fn translate<S: POrd<S>>(s: S) -> Matrix4<S> { Matrix4(s) }
|
|
|
|
impl POrd<f32> for f32 {}
|
|
impl POrd<f64> for f64 {}
|
|
|
|
fn main() {
|
|
let x = 1.0;
|
|
let m : Matrix4<f32> = translate(x);
|
|
println!("m: {:?}", m);
|
|
}
|