2017-10-09 01:13:37 +00:00
|
|
|
error[E0061]: this function takes 0 parameters but 1 parameter was supplied
|
2017-12-12 20:46:33 +00:00
|
|
|
--> $DIR/method-call-err-msg.rs:22:7
|
2017-10-09 01:13:37 +00:00
|
|
|
|
|
|
|
|
15 | fn zero(self) -> Foo { self }
|
2017-12-10 19:12:17 +00:00
|
|
|
| -------------------- defined here
|
2017-10-09 01:13:37 +00:00
|
|
|
...
|
2017-12-12 20:46:33 +00:00
|
|
|
22 | x.zero(0) //~ ERROR this function takes 0 parameters but 1 parameter was supplied
|
2017-12-10 19:12:17 +00:00
|
|
|
| ^^^^ expected 0 parameters
|
2017-10-09 01:13:37 +00:00
|
|
|
|
|
|
|
error[E0061]: this function takes 1 parameter but 0 parameters were supplied
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/method-call-err-msg.rs:23:7
|
2017-10-09 01:13:37 +00:00
|
|
|
|
|
2017-12-12 20:46:33 +00:00
|
|
|
16 | fn one(self, _: isize) -> Foo { self }
|
2017-12-10 19:12:17 +00:00
|
|
|
| ----------------------------- defined here
|
2017-10-09 01:13:37 +00:00
|
|
|
...
|
2017-12-10 20:29:24 +00:00
|
|
|
23 | .one() //~ ERROR this function takes 1 parameter but 0 parameters were supplied
|
2017-10-09 01:13:37 +00:00
|
|
|
| ^^^ expected 1 parameter
|
|
|
|
|
|
|
|
error[E0061]: this function takes 2 parameters but 1 parameter was supplied
|
2017-12-12 20:46:33 +00:00
|
|
|
--> $DIR/method-call-err-msg.rs:24:7
|
2017-10-09 01:13:37 +00:00
|
|
|
|
|
2017-12-12 20:46:33 +00:00
|
|
|
17 | fn two(self, _: isize, _: isize) -> Foo { self }
|
2017-12-10 19:12:17 +00:00
|
|
|
| --------------------------------------- defined here
|
2017-10-09 01:13:37 +00:00
|
|
|
...
|
2017-12-12 20:46:33 +00:00
|
|
|
24 | .two(0); //~ ERROR this function takes 2 parameters but 1 parameter was supplied
|
2017-12-10 19:12:17 +00:00
|
|
|
| ^^^ expected 2 parameters
|
2017-10-09 01:13:37 +00:00
|
|
|
|
|
|
|
error[E0599]: no method named `take` found for type `Foo` in the current scope
|
2017-12-10 20:29:24 +00:00
|
|
|
--> $DIR/method-call-err-msg.rs:28:7
|
2017-10-09 01:13:37 +00:00
|
|
|
|
|
2017-12-10 20:29:24 +00:00
|
|
|
13 | pub struct Foo;
|
2017-11-16 06:18:52 +00:00
|
|
|
| --------------- method `take` not found for this
|
|
|
|
...
|
2017-12-10 20:29:24 +00:00
|
|
|
28 | .take() //~ ERROR no method named `take` found for type `Foo` in the current scope
|
2017-10-09 01:13:37 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= note: the method `take` exists but the following trait bounds were not satisfied:
|
|
|
|
`&mut Foo : std::iter::Iterator`
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
|
|
= note: the following traits define an item `take`, perhaps you need to implement one of them:
|
2018-01-18 04:15:13 +00:00
|
|
|
candidate #1: `std::io::Read`
|
|
|
|
candidate #2: `std::iter::Iterator`
|
2017-10-09 01:13:37 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-02-19 20:40:25 +00:00
|
|
|
You've got a few errors: E0061, E0599
|
|
|
|
If you want more information on an error, try using "rustc --explain E0061"
|