rust/tests/ui/dlist.stderr

52 lines
1.5 KiB
Text
Raw Normal View History

error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/dlist.rs:9:16
|
2018-12-27 16:57:55 +01:00
LL | type Baz = LinkedList<u8>;
| ^^^^^^^^^^^^^^
|
= note: `-D clippy::linkedlist` implied by `-D warnings`
2020-01-06 07:36:33 +01:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/dlist.rs:10:15
|
LL | fn foo(_: LinkedList<u8>);
| ^^^^^^^^^^^^^^
|
2020-01-06 07:36:33 +01:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/dlist.rs:11:23
|
2018-12-27 16:57:55 +01:00
LL | const BAR: Option<LinkedList<u8>>;
2018-12-10 06:27:19 +01:00
| ^^^^^^^^^^^^^^
|
2020-01-06 07:36:33 +01:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/dlist.rs:22:15
|
2018-12-27 16:57:55 +01:00
LL | fn foo(_: LinkedList<u8>) {}
| ^^^^^^^^^^^^^^
|
2020-01-06 07:36:33 +01:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/dlist.rs:25:39
|
2018-12-27 16:57:55 +01:00
LL | pub fn test(my_favourite_linked_list: LinkedList<u8>) {
| ^^^^^^^^^^^^^^
|
2020-01-06 07:36:33 +01:00
= help: a `VecDeque` might work
error: you seem to be using a `LinkedList`! Perhaps you meant some other data structure?
--> $DIR/dlist.rs:29:29
|
2018-12-27 16:57:55 +01:00
LL | pub fn test_ret() -> Option<LinkedList<u8>> {
| ^^^^^^^^^^^^^^
|
2020-01-06 07:36:33 +01:00
= help: a `VecDeque` might work
2018-01-16 17:06:27 +01:00
error: aborting due to 6 previous errors