summaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/struct_init_9.rs
blob: 2daa078d5b37f31ebd9ef030a4543a54d745b120 (plain)
1
2
3
4
5
6
fn main() {
    struct foo(i32, f32);

    let a;
    a = foo(123, 456f32);
}