]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/dlist.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / dlist.stderr
index 5322075208ce827db48124ac4f38150319ed3b39..6b0413fdf23905e1560cfa95a2e2881e03274d89 100644 (file)
@@ -1,48 +1,48 @@
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:14:16
+  --> $DIR/dlist.rs:19:16
    |
-14 |     type Baz = LinkedList<u8>;
+LL |     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?
-  --> $DIR/dlist.rs:15:12
+  --> $DIR/dlist.rs:20:12
    |
-15 |     fn foo(LinkedList<u8>);
+LL |     fn foo(LinkedList<u8>);
    |            ^^^^^^^^^^^^^^
    |
    = help: a VecDeque might work
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:16:24
+  --> $DIR/dlist.rs:21:23
    |
-16 |     const BAR : Option<LinkedList<u8>>;
-   |                        ^^^^^^^^^^^^^^
+LL |     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?
-  --> $DIR/dlist.rs:27:15
+  --> $DIR/dlist.rs:32:15
    |
-27 |     fn foo(_: LinkedList<u8>) {}
+LL |     fn foo(_: LinkedList<u8>) {}
    |               ^^^^^^^^^^^^^^
    |
    = help: a VecDeque might work
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:30:39
+  --> $DIR/dlist.rs:35:39
    |
-30 | pub fn test(my_favourite_linked_list: LinkedList<u8>) {
+LL | 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?
-  --> $DIR/dlist.rs:34:29
+  --> $DIR/dlist.rs:39:29
    |
-34 | pub fn test_ret() -> Option<LinkedList<u8>> {
+LL | pub fn test_ret() -> Option<LinkedList<u8>> {
    |                             ^^^^^^^^^^^^^^
    |
    = help: a VecDeque might work