(root)/
gcc-13.2.0/
gcc/
testsuite/
rust/
compile/
func3.rs
fn test(a: i32, b: i32) -> i32 {
    a + b
}

fn main() {
    let a = test(1, true);
    // { dg-error "expected .i32. got .bool." "" { target *-*-* } .-1 }
}