summary refs log tree commit diff
path: root/src/test/ui/auto-ref-slice-plus-ref.stderr
blob: f62ac84a185a328a51adb51dff37b844c3af4a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
error[E0599]: no method named `test_mut` found for type `std::vec::Vec<{integer}>` in the current scope
  --> $DIR/auto-ref-slice-plus-ref.rs:18:7
   |
LL |     a.test_mut(); //~ ERROR no method named `test_mut` 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_mut`, perhaps you need to implement it:
           candidate #1: `MyIter`
   = help: did you mean `get_mut`?

error[E0599]: no method named `test` found for type `std::vec::Vec<{integer}>` in the current scope
  --> $DIR/auto-ref-slice-plus-ref.rs:19:7
   |
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
  --> $DIR/auto-ref-slice-plus-ref.rs:21:11
   |
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
  --> $DIR/auto-ref-slice-plus-ref.rs:22:12
   |
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`.