2018-08-08 07:28:26 -05:00
|
|
|
error[E0599]: no method named `test_mut` found for type `std::vec::Vec<{integer}>` in the current scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/auto-ref-slice-plus-ref.rs:7:7
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | a.test_mut(); //~ ERROR no method named `test_mut` found
|
2019-01-20 21:37:38 -06:00
|
|
|
| ^^^^^^^^ help: did you mean: `get_mut`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
|
|
= note: the following trait defines an item `test_mut`, perhaps you need to implement it:
|
|
|
|
candidate #1: `MyIter`
|
|
|
|
|
|
|
|
error[E0599]: no method named `test` found for type `std::vec::Vec<{integer}>` in the current scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/auto-ref-slice-plus-ref.rs:8:7
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | a.test(); //~ ERROR no method named `test` found
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
|
|
= note: the following trait defines an item `test`, perhaps you need to implement it:
|
|
|
|
candidate #1: `MyIter`
|
|
|
|
|
|
|
|
error[E0599]: no method named `test` found for type `[{integer}; 1]` in the current scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/auto-ref-slice-plus-ref.rs:10:11
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | ([1]).test(); //~ ERROR no method named `test` found
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
|
|
= note: the following trait defines an item `test`, perhaps you need to implement it:
|
|
|
|
candidate #1: `MyIter`
|
|
|
|
|
|
|
|
error[E0599]: no method named `test` found for type `&[{integer}; 1]` in the current scope
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/auto-ref-slice-plus-ref.rs:11:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | (&[1]).test(); //~ ERROR no method named `test` found
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
|
|
|
= note: the following trait defines an item `test`, perhaps you need to implement it:
|
|
|
|
candidate #1: `MyIter`
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|