rust/tests/ui/dlist.stderr

52 lines
1.5 KiB
Plaintext
Raw Normal View History

error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-10-07 00:18:06 +08:00
--> $DIR/dlist.rs:24:16
|
2018-10-07 00:18:06 +08:00
24 | 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?
2018-10-07 00:18:06 +08:00
--> $DIR/dlist.rs:25:12
|
2018-10-07 00:18:06 +08:00
25 | fn foo(LinkedList<u8>);
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-10-07 00:18:06 +08:00
--> $DIR/dlist.rs:26:24
|
2018-10-07 00:18:06 +08:00
26 | 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?
2018-10-07 00:18:06 +08:00
--> $DIR/dlist.rs:37:15
|
2018-10-07 00:18:06 +08:00
37 | fn foo(_: LinkedList<u8>) {}
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2018-10-07 00:18:06 +08:00
--> $DIR/dlist.rs:40:39
|
2018-10-07 00:18:06 +08:00
40 | 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?
2018-10-07 00:18:06 +08:00
--> $DIR/dlist.rs:44:29
|
2018-10-07 00:18:06 +08:00
44 | pub fn test_ret() -> Option<LinkedList<u8>> {
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
2018-01-17 00:06:27 +08:00
error: aborting due to 6 previous errors