rust/tests/ui/issues/issue-14382.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
320 B
Rust
Raw Normal View History

// run-pass
2015-07-21 01:31:04 +08:00
#[derive(Debug)]
2022-07-26 04:36:03 +08:00
struct Matrix4<S>(#[allow(unused_tuple_struct_fields)] S);
2015-07-21 01:31:04 +08:00
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);
}