1
1
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2
- --> $DIR/dlist.rs:10 :16
2
+ --> $DIR/dlist.rs:9 :16
3
3
|
4
4
LL | type Baz = LinkedList<u8>;
5
5
| ^^^^^^^^^^^^^^
@@ -8,39 +8,39 @@ LL | type Baz = LinkedList<u8>;
8
8
= help: a VecDeque might work
9
9
10
10
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
11
- --> $DIR/dlist.rs:11 :12
11
+ --> $DIR/dlist.rs:10 :12
12
12
|
13
13
LL | fn foo(LinkedList<u8>);
14
14
| ^^^^^^^^^^^^^^
15
15
|
16
16
= help: a VecDeque might work
17
17
18
18
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
19
- --> $DIR/dlist.rs:12 :23
19
+ --> $DIR/dlist.rs:11 :23
20
20
|
21
21
LL | const BAR: Option<LinkedList<u8>>;
22
22
| ^^^^^^^^^^^^^^
23
23
|
24
24
= help: a VecDeque might work
25
25
26
26
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
27
- --> $DIR/dlist.rs:23 :15
27
+ --> $DIR/dlist.rs:22 :15
28
28
|
29
29
LL | fn foo(_: LinkedList<u8>) {}
30
30
| ^^^^^^^^^^^^^^
31
31
|
32
32
= help: a VecDeque might work
33
33
34
34
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
35
- --> $DIR/dlist.rs:26 :39
35
+ --> $DIR/dlist.rs:25 :39
36
36
|
37
37
LL | pub fn test(my_favourite_linked_list: LinkedList<u8>) {
38
38
| ^^^^^^^^^^^^^^
39
39
|
40
40
= help: a VecDeque might work
41
41
42
42
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
43
- --> $DIR/dlist.rs:30 :29
43
+ --> $DIR/dlist.rs:29 :29
44
44
|
45
45
LL | pub fn test_ret() -> Option<LinkedList<u8>> {
46
46
| ^^^^^^^^^^^^^^
0 commit comments