summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/linkedlist.stderr
blob: 51327df13211879da10fb77801a1c6a2e44be1c2 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:8:10
   |
LL | const C: LinkedList<i32> = LinkedList::new();
   |          ^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::linkedlist` implied by `-D warnings`
   = help: a `VecDeque` might work

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:9:11
   |
LL | static S: LinkedList<i32> = LinkedList::new();
   |           ^^^^^^^^^^^^^^^
   |
   = help: a `VecDeque` might work

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:12:16
   |
LL |     type Baz = LinkedList<u8>;
   |                ^^^^^^^^^^^^^^
   |
   = help: a `VecDeque` might work

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:13:15
   |
LL |     fn foo(_: LinkedList<u8>);
   |               ^^^^^^^^^^^^^^
   |
   = help: a `VecDeque` might work

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:14:23
   |
LL |     const BAR: Option<LinkedList<u8>>;
   |                       ^^^^^^^^^^^^^^
   |
   = help: a `VecDeque` might work

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:24:29
   |
LL |     priv_linked_list_field: LinkedList<u8>,
   |                             ^^^^^^^^^^^^^^
   |
   = help: a `VecDeque` might work

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:28:15
   |
LL |     fn foo(_: LinkedList<u8>) {}
   |               ^^^^^^^^^^^^^^
   |
   = help: a `VecDeque` might work

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:33:34
   |
LL | fn test(my_favorite_linked_list: LinkedList<u8>) {}
   |                                  ^^^^^^^^^^^^^^
   |
   = help: a `VecDeque` might work

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
  --> $DIR/linkedlist.rs:34:25
   |
LL | fn test_ret() -> Option<LinkedList<u8>> {
   |                         ^^^^^^^^^^^^^^
   |
   = help: a `VecDeque` might work

error: aborting due to 9 previous errors