2021-03-12 14:30:50 +00:00
|
|
|
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:8:10
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
LL | const C: LinkedList<i32> = LinkedList::new();
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= help: a `VecDeque` might work
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::linkedlist` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::linkedlist)]`
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:10:11
|
2021-04-08 15:50:13 +00:00
|
|
|
|
|
|
|
|
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?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:14:16
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | type Baz = LinkedList<u8>;
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
= help: a `VecDeque` might work
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:16:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2019-07-22 19:59:09 +00:00
|
|
|
LL | fn foo(_: LinkedList<u8>);
|
|
|
|
| ^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
= help: a `VecDeque` might work
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:18:23
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | const BAR: Option<LinkedList<u8>>;
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
= help: a `VecDeque` might work
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:29:29
|
2021-09-08 14:31:47 +00:00
|
|
|
|
|
|
|
|
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?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:34:15
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | fn foo(_: LinkedList<u8>) {}
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
= help: a `VecDeque` might work
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:40:34
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
LL | fn test(my_favorite_linked_list: LinkedList<u8>) {}
|
|
|
|
| ^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
= help: a `VecDeque` might work
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/linkedlist.rs:42:25
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
LL | fn test_ret() -> Option<LinkedList<u8>> {
|
|
|
|
| ^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2020-01-06 06:36:33 +00:00
|
|
|
= help: a `VecDeque` might work
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2021-09-08 14:31:47 +00:00
|
|
|
error: aborting due to 9 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|