]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/dlist.stderr
iterate List by value
[rust.git] / tests / ui / dlist.stderr
index 1d0507d1e0408e9bd00de8ed7377d04d8c561688..64fde33c64f5228edb53bd57ad423972c1e4320d 100644 (file)
@@ -1,61 +1,51 @@
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:13:16
+  --> $DIR/dlist.rs:9:16
    |
-13 |     type Baz = LinkedList<u8>; //~ ERROR I see you're using a LinkedList!
+LL |     type Baz = LinkedList<u8>;
    |                ^^^^^^^^^^^^^^
    |
-   = note: #[deny(linkedlist)] implied by #[deny(clippy)]
-note: lint level defined here
-  --> $DIR/dlist.rs:6:9
-   |
-6  | #![deny(clippy)]
-   |         ^^^^^^
-   = help: a VecDeque might work
+   = 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:14:12
+  --> $DIR/dlist.rs:10:15
    |
-14 |     fn foo(LinkedList<u8>); //~ ERROR I see you're using a LinkedList!
-   |            ^^^^^^^^^^^^^^
+LL |     fn foo(_: LinkedList<u8>);
+   |               ^^^^^^^^^^^^^^
    |
-   = note: #[deny(linkedlist)] implied by #[deny(clippy)]
-   = 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:24
+  --> $DIR/dlist.rs:11:23
    |
-15 |     const BAR : Option<LinkedList<u8>>; //~ ERROR I see you're using a LinkedList!
-   |                        ^^^^^^^^^^^^^^
+LL |     const BAR: Option<LinkedList<u8>>;
+   |                       ^^^^^^^^^^^^^^
    |
-   = note: #[deny(linkedlist)] implied by #[deny(clippy)]
-   = 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:26:15
+  --> $DIR/dlist.rs:22:15
    |
-26 |     fn foo(_: LinkedList<u8>) {} //~ ERROR I see you're using a LinkedList!
+LL |     fn foo(_: LinkedList<u8>) {}
    |               ^^^^^^^^^^^^^^
    |
-   = note: #[deny(linkedlist)] implied by #[deny(clippy)]
-   = 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:29:39
+  --> $DIR/dlist.rs:25:39
    |
-29 | pub fn test(my_favourite_linked_list: LinkedList<u8>) { //~ ERROR I see you're using a LinkedList!
+LL | pub fn test(my_favourite_linked_list: LinkedList<u8>) {
    |                                       ^^^^^^^^^^^^^^
    |
-   = note: #[deny(linkedlist)] implied by #[deny(clippy)]
-   = 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:33:29
+  --> $DIR/dlist.rs:29:29
    |
-33 | pub fn test_ret() -> Option<LinkedList<u8>> { //~ ERROR I see you're using a LinkedList!
+LL | pub fn test_ret() -> Option<LinkedList<u8>> {
    |                             ^^^^^^^^^^^^^^
    |
-   = note: #[deny(linkedlist)] implied by #[deny(clippy)]
-   = help: a VecDeque might work
+   = help: a `VecDeque` might work
 
 error: aborting due to 6 previous errors