mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
51 lines
1.5 KiB
Text
51 lines
1.5 KiB
Text
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
|
|
--> $DIR/dlist.rs:10:16
|
|
|
|
|
LL | 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?
|
|
--> $DIR/dlist.rs:11:12
|
|
|
|
|
LL | fn foo(LinkedList<u8>);
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= help: a VecDeque might work
|
|
|
|
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
|
|
--> $DIR/dlist.rs:12:23
|
|
|
|
|
LL | 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?
|
|
--> $DIR/dlist.rs:23:15
|
|
|
|
|
LL | fn foo(_: LinkedList<u8>) {}
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= help: a VecDeque might work
|
|
|
|
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
|
|
--> $DIR/dlist.rs:26:39
|
|
|
|
|
LL | 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?
|
|
--> $DIR/dlist.rs:30:29
|
|
|
|
|
LL | pub fn test_ret() -> Option<LinkedList<u8>> {
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= help: a VecDeque might work
|
|
|
|
error: aborting due to 6 previous errors
|
|
|