rust/tests/ui/linkedlist.stderr

77 lines
2.4 KiB
Plaintext
Raw Normal View History

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