1error[E0061]: this function takes 6 arguments but 2 arguments were supplied 2 --> $DIR/issue-97197.rs:2:5 3 | 4LL | g((), ()); 5 | ^-------- multiple arguments are missing 6 | 7note: function defined here 8 --> $DIR/issue-97197.rs:6:8 9 | 10LL | pub fn g(a1: (), a2: bool, a3: bool, a4: bool, a5: bool, a6: ()) -> () {} 11 | ^ ------ -------- -------- -------- -------- ------ 12help: provide the arguments 13 | 14LL | g((), /* bool */, /* bool */, /* bool */, /* bool */, ()); 15 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 16 17error: aborting due to previous error 18 19For more information about this error, try `rustc --explain E0061`. 20