]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/dlist.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / dlist.stderr
index f2ca4dab9974030d96e77eae239ccc2ffaeb138d..64fde33c64f5228edb53bd57ad423972c1e4320d 100644 (file)
@@ -1,51 +1,51 @@
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:19:16
+  --> $DIR/dlist.rs:9:16
    |
-19 |     type Baz = LinkedList<u8>;
+LL |     type Baz = LinkedList<u8>;
    |                ^^^^^^^^^^^^^^
    |
    = note: `-D clippy::linkedlist` implied by `-D warnings`
-   = help: a VecDeque might work
+   = help: a `VecDeque` might work
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:20:12
+  --> $DIR/dlist.rs:10:15
    |
-20 |     fn foo(LinkedList<u8>);
-   |            ^^^^^^^^^^^^^^
+LL |     fn foo(_: LinkedList<u8>);
+   |               ^^^^^^^^^^^^^^
    |
-   = help: a VecDeque might work
+   = help: a `VecDeque` might work
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:21:23
+  --> $DIR/dlist.rs:11:23
    |
-21 |     const BAR: Option<LinkedList<u8>>;
+LL |     const BAR: Option<LinkedList<u8>>;
    |                       ^^^^^^^^^^^^^^
    |
-   = help: a VecDeque might work
+   = help: a `VecDeque` might work
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:32:15
+  --> $DIR/dlist.rs:22:15
    |
-32 |     fn foo(_: LinkedList<u8>) {}
+LL |     fn foo(_: LinkedList<u8>) {}
    |               ^^^^^^^^^^^^^^
    |
-   = help: a VecDeque might work
+   = help: a `VecDeque` might work
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:35:39
+  --> $DIR/dlist.rs:25:39
    |
-35 | pub fn test(my_favourite_linked_list: LinkedList<u8>) {
+LL | pub fn test(my_favourite_linked_list: LinkedList<u8>) {
    |                                       ^^^^^^^^^^^^^^
    |
-   = help: a VecDeque might work
+   = help: a `VecDeque` might work
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:39:29
+  --> $DIR/dlist.rs:29:29
    |
-39 | pub fn test_ret() -> Option<LinkedList<u8>> {
+LL | pub fn test_ret() -> Option<LinkedList<u8>> {
    |                             ^^^^^^^^^^^^^^
    |
-   = help: a VecDeque might work
+   = help: a `VecDeque` might work
 
 error: aborting due to 6 previous errors