2020-09-02 02:40:56 -05:00
|
|
|
error[E0599]: no method named `test_mut` found for struct `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
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | a.test_mut();
|
2022-07-08 14:42:29 -05:00
|
|
|
| ^^^^^^^^ help: there is a method with a similar name: `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
|
2020-02-24 20:55:51 -06:00
|
|
|
note: `MyIter` defines an item `test_mut`, perhaps you need to implement it
|
|
|
|
--> $DIR/auto-ref-slice-plus-ref.rs:14:1
|
|
|
|
|
|
|
|
|
LL | trait MyIter {
|
|
|
|
| ^^^^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error[E0599]: no method named `test` found for struct `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
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | a.test();
|
2020-09-02 02:40:56 -05:00
|
|
|
| ^^^^ method not found in `Vec<{integer}>`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
2020-02-24 20:55:51 -06:00
|
|
|
note: `MyIter` defines an item `test`, perhaps you need to implement it
|
|
|
|
--> $DIR/auto-ref-slice-plus-ref.rs:14:1
|
|
|
|
|
|
|
|
|
LL | trait MyIter {
|
|
|
|
| ^^^^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-01-08 10:05:31 -06:00
|
|
|
error[E0599]: no method named `test` found for array `[{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
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | ([1]).test();
|
2019-09-06 14:00:07 -05:00
|
|
|
| ^^^^ method not found in `[{integer}; 1]`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
2020-02-24 20:55:51 -06:00
|
|
|
note: `MyIter` defines an item `test`, perhaps you need to implement it
|
|
|
|
--> $DIR/auto-ref-slice-plus-ref.rs:14:1
|
|
|
|
|
|
|
|
|
LL | trait MyIter {
|
|
|
|
| ^^^^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-01-08 10:05:31 -06:00
|
|
|
error[E0599]: no method named `test` found for reference `&[{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
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | (&[1]).test();
|
2019-09-06 14:00:07 -05:00
|
|
|
| ^^^^ method not found in `&[{integer}; 1]`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the trait is implemented and in scope
|
2020-02-24 20:55:51 -06:00
|
|
|
note: `MyIter` defines an item `test`, perhaps you need to implement it
|
|
|
|
--> $DIR/auto-ref-slice-plus-ref.rs:14:1
|
|
|
|
|
|
|
|
|
LL | trait MyIter {
|
|
|
|
| ^^^^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|