rust-clippy/tests/ui/dlist.stderr

52 lines
1.5 KiB
Text
Raw Normal View History

error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-12-10 05:27:19 +00:00
--> $DIR/dlist.rs:19:16
|
2018-12-10 05:27:19 +00:00
19 | type Baz = LinkedList<u8>;
| ^^^^^^^^^^^^^^
|
= note: `-D clippy::linkedlist` implied by `-D warnings`
= help: a VecDeque might work
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-12-10 05:27:19 +00:00
--> $DIR/dlist.rs:20:12
|
2018-12-10 05:27:19 +00:00
20 | fn foo(LinkedList<u8>);
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-12-10 05:27:19 +00:00
--> $DIR/dlist.rs:21:23
|
2018-12-10 05:27:19 +00:00
21 | const BAR: Option<LinkedList<u8>>;
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-12-10 05:27:19 +00:00
--> $DIR/dlist.rs:32:15
|
2018-12-10 05:27:19 +00:00
32 | fn foo(_: LinkedList<u8>) {}
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-12-10 05:27:19 +00:00
--> $DIR/dlist.rs:35:39
|
2018-12-10 05:27:19 +00:00
35 | pub fn test(my_favourite_linked_list: LinkedList<u8>) {
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-12-10 05:27:19 +00:00
--> $DIR/dlist.rs:39:29
|
2018-12-10 05:27:19 +00:00
39 | pub fn test_ret() -> Option<LinkedList<u8>> {
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
2018-01-16 16:06:27 +00:00
error: aborting due to 6 previous errors