]> git.proxmox.com Git - rustc.git/blame - src/test/ui/tuple/wrong_argument_ice.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / tuple / wrong_argument_ice.stderr
CommitLineData
5e7ed085
FG
1error[E0061]: this function takes 1 argument but 2 arguments were supplied
2 --> $DIR/wrong_argument_ice.rs:11:18
3 |
4LL | self.acc.push_back(self.current_provides, self.current_requires);
923072b8 5 | ^^^^^^^^^
5e7ed085
FG
6 |
7note: associated function defined here
8 --> $SRC_DIR/alloc/src/collections/vec_deque/mod.rs:LL:COL
9 |
10LL | pub fn push_back(&mut self, value: T) {
11 | ^^^^^^^^^
064997fb 12help: wrap these arguments in parentheses to construct a tuple
5e7ed085
FG
13 |
14LL | self.acc.push_back((self.current_provides, self.current_requires));
15 | + +
16
17error: aborting due to previous error
18
19For more information about this error, try `rustc --explain E0061`.