aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/tuple_struct2.rs
blob: 6cd52ccbc436e7a6c9246eecd2ca54ccfcce1d02 (plain)
1
2
3
4
5
struct Bar(i32, i32, bool);

fn main() {
    let a = Bar(1, 2); // { dg-error "this function takes 3 arguments but 2 arguments were supplied" }
}