(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
tuple_struct3.rs
struct Foo(i32, i32, bool);

fn main() {
    let c = Foo(1, 2f32, true);
    // { dg-error "expected .i32. got .f32." "" { target *-*-* } .-1 }
}