|
| 1 | +error[E0059]: one or more arguments to this function are incorrect |
| 2 | + --> $DIR/basic.rs:31:5 |
| 3 | + | |
| 4 | +LL | invalid(1.0); |
| 5 | + | ^^^^^^^^---^ |
| 6 | + | | |
| 7 | + | the type of this argument is incorrect |
| 8 | + |
| 9 | +error[E0059]: one or more arguments to this function are incorrect |
| 10 | + --> $DIR/basic.rs:32:5 |
| 11 | + | |
| 12 | +LL | extra(&""); |
| 13 | + | ^^^^^^---^ |
| 14 | + | | |
| 15 | + | this argument appears to be extra |
| 16 | + |
| 17 | +error[E0059]: one or more arguments to this function are incorrect |
| 18 | + --> $DIR/basic.rs:33:5 |
| 19 | + | |
| 20 | +LL | missing(); |
| 21 | + | ^^^^^^^^^ |
| 22 | + | |
| 23 | + = note: the 1st parameter appears to be missing |
| 24 | + |
| 25 | +error[E0059]: one or more arguments to this function are incorrect |
| 26 | + --> $DIR/basic.rs:34:5 |
| 27 | + | |
| 28 | +LL | swapped(&"", 1); |
| 29 | + | ^^^^^^^^---^^-^ |
| 30 | + | | | |
| 31 | + | | these two arguments appear to be swapped |
| 32 | + | these two arguments appear to be swapped |
| 33 | + |
| 34 | +error[E0059]: one or more arguments to this function are incorrect |
| 35 | + --> $DIR/basic.rs:35:5 |
| 36 | + | |
| 37 | +LL | permuted(Y {}, Z {}, X {}); |
| 38 | + | ^^^^^^^^^----^^----^^----^ |
| 39 | + | | | | |
| 40 | + | | | these 3 arguments appear to be in the wrong order |
| 41 | + | | these 3 arguments appear to be in the wrong order |
| 42 | + | these 3 arguments appear to be in the wrong order |
| 43 | + |
| 44 | +error[E0059]: one or more arguments to this function are incorrect |
| 45 | + --> $DIR/basic.rs:36:5 |
| 46 | + | |
| 47 | +LL | complex(1.0, H {}, &"", G{}, F::X2, Z {}, X {}, Y {}); |
| 48 | + | ^^^^^^^^---^^----^^^^^^^---^^-----^^----^^----^^----^ |
| 49 | + | | | | | | | | |
| 50 | + | | | | | | | these 3 arguments appear to be in the wrong order |
| 51 | + | | | | | | these 3 arguments appear to be in the wrong order |
| 52 | + | | | | | these 3 arguments appear to be in the wrong order |
| 53 | + | | | | these two arguments appear to be swapped |
| 54 | + | | | these two arguments appear to be swapped |
| 55 | + | | this argument appears to be extra |
| 56 | + | the type of this argument is incorrect |
| 57 | + | |
| 58 | + = note: the 3rd parameter appears to be missing |
| 59 | + |
| 60 | +error: aborting due to 6 previous errors |
| 61 | + |
| 62 | +For more information about this error, try `rustc --explain E0059`. |
0 commit comments