]> git.proxmox.com Git - rustc.git/blame - src/test/ui/span/E0057.stderr
New upstream version 1.14.0+dfsg1
[rustc.git] / src / test / ui / span / E0057.stderr
CommitLineData
c30ab7b3
SL
1error[E0057]: this function takes 1 parameter but 0 parameters were supplied
2 --> $DIR/E0057.rs:13:13
3 |
413 | let a = f(); //~ ERROR E0057
5 | ^^^
6 |
7 = note: the following parameter type was expected: (_,)
8
9error[E0057]: this function takes 1 parameter but 2 parameters were supplied
10 --> $DIR/E0057.rs:15:15
11 |
1215 | let c = f(2, 3); //~ ERROR E0057
13 | ^^^^
14 |
15 = note: the following parameter type was expected: (_,)
16
17error: aborting due to 2 previous errors
18