]> 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 95872c02994f394868bbb8c7ad19dd42c820e079..6b0413fdf23905e1560cfa95a2e2881e03274d89 100644 (file)
@@ -1,49 +1,51 @@
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:12:16
+  --> $DIR/dlist.rs:19:16
    |
-12 |     type Baz = LinkedList<u8>;
+LL |     type Baz = LinkedList<u8>;
    |                ^^^^^^^^^^^^^^
    |
-   = note: `-D linkedlist` implied by `-D warnings`
+   = 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:13:12
+  --> $DIR/dlist.rs:20:12
    |
-13 |     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:14:24
+  --> $DIR/dlist.rs:21:23
    |
-14 |     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:25:15
+  --> $DIR/dlist.rs:32:15
    |
-25 |     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:28:39
+  --> $DIR/dlist.rs:35:39
    |
-28 | 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:32:29
+  --> $DIR/dlist.rs:39:29
    |
-32 | pub fn test_ret() -> Option<LinkedList<u8>> {
+LL | pub fn test_ret() -> Option<LinkedList<u8>> {
    |                             ^^^^^^^^^^^^^^
    |
    = help: a VecDeque might work
 
+error: aborting due to 6 previous errors
+