rust-clippy/tests/ui/linkedlist.stderr

76 lines
2.3 KiB
Text
Raw Normal View History

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/linkedlist.rs:8:10
|
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`
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/linkedlist.rs:9: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?
--> $DIR/linkedlist.rs:12:16
|
2018-12-27 15:57:55 +00:00
LL | type Baz = LinkedList<u8>;
| ^^^^^^^^^^^^^^
|
2020-01-06 06:36:33 +00:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/linkedlist.rs:13:15
|
LL | fn foo(_: LinkedList<u8>);
| ^^^^^^^^^^^^^^
|
2020-01-06 06:36:33 +00:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/linkedlist.rs:14:23
|
2018-12-27 15:57:55 +00:00
LL | const BAR: Option<LinkedList<u8>>;
2018-12-10 05:27:19 +00:00
| ^^^^^^^^^^^^^^
|
2020-01-06 06:36:33 +00:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/linkedlist.rs:24: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?
--> $DIR/linkedlist.rs:28:15
|
2018-12-27 15:57:55 +00:00
LL | fn foo(_: LinkedList<u8>) {}
| ^^^^^^^^^^^^^^
|
2020-01-06 06:36:33 +00:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/linkedlist.rs:33:34
|
LL | fn test(my_favorite_linked_list: LinkedList<u8>) {}
| ^^^^^^^^^^^^^^
|
2020-01-06 06:36:33 +00:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/linkedlist.rs:34:25
|
LL | fn test_ret() -> Option<LinkedList<u8>> {
| ^^^^^^^^^^^^^^
|
2020-01-06 06:36:33 +00:00
= help: a `VecDeque` might work
error: aborting due to 9 previous errors
2018-01-16 16:06:27 +00:00