]> 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 5322075208ce827db48124ac4f38150319ed3b39..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:14:16
+  --> $DIR/dlist.rs:9:16
    |
-14 |     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:15:12
+  --> $DIR/dlist.rs:10:15
    |
-15 |     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:16:24
+  --> $DIR/dlist.rs:11:23
    |
-16 |     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:27:15
+  --> $DIR/dlist.rs:22:15
    |
-27 |     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:30:39
+  --> $DIR/dlist.rs:25: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
+   = 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:29:29
    |
-34 | 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