]> 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 1d0507d1e0408e9bd00de8ed7377d04d8c561688..6b0413fdf23905e1560cfa95a2e2881e03274d89 100644 (file)
@@ -1,60 +1,50 @@
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:13:16
+  --> $DIR/dlist.rs:19: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)]
-   |         ^^^^^^
+   = 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:20:12
    |
-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
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:15:24
+  --> $DIR/dlist.rs:21: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
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:26:15
+  --> $DIR/dlist.rs:32: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
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:29:39
+  --> $DIR/dlist.rs:35: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
 
 error: I see you're using a LinkedList! Perhaps you meant some other data structure?
-  --> $DIR/dlist.rs:33:29
+  --> $DIR/dlist.rs:39: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
 
 error: aborting due to 6 previous errors