aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/func3.rs
blob: 002e5c90ab5cb1f5183d75c7e8a7354ea131995e (plain)
1
2
3
4
5
6
7
8
fn test(a: i32, b: i32) -> i32 {
    a + b
}

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