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?
2017-08-01 17:54:21 +02:00
--> $DIR/dlist.rs:12:16
|
2017-07-10 15:29:29 +02:00
12 | type Baz = LinkedList<u8>;
| ^^^^^^^^^^^^^^
|
= note: `-D 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?
2017-08-01 17:54:21 +02:00
--> $DIR/dlist.rs:13:12
|
2017-07-10 15:29:29 +02:00
13 | fn foo(LinkedList<u8>);
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2017-08-01 17:54:21 +02:00
--> $DIR/dlist.rs:14:24
|
2017-07-10 15:29:29 +02:00
14 | 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?
2017-08-01 17:54:21 +02:00
--> $DIR/dlist.rs:25:15
|
2017-07-10 15:29:29 +02: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?
2017-08-01 17:54:21 +02:00
--> $DIR/dlist.rs:28:39
|
2017-07-10 15:29:29 +02:00
28 | 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?
2017-08-01 17:54:21 +02:00
--> $DIR/dlist.rs:32:29
|
2017-07-10 15:29:29 +02:00
32 | pub fn test_ret() -> Option<LinkedList<u8>> {
| ^^^^^^^^^^^^^^
|
= help: a VecDeque might work
2018-01-16 17:06:27 +01:00
error: aborting due to 6 previous errors