Skip to content

Commit d19b66e

Browse files
committed
Auto merge of #3959 - rust-lang:rustup, r=phansch
Rust upgrade to rustc 1.35.0-nightly (0085672 2019-04-13) r? @phansch @oli-obk
2 parents 5939b61 + 1366b95 commit d19b66e

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

tests/ui/dlist.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![feature(alloc)]
21
#![feature(associated_type_defaults)]
32
#![warn(clippy::linkedlist)]
43
#![allow(dead_code, clippy::needless_pass_by_value)]

tests/ui/dlist.stderr

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
2-
--> $DIR/dlist.rs:10:16
2+
--> $DIR/dlist.rs:9:16
33
|
44
LL | type Baz = LinkedList<u8>;
55
| ^^^^^^^^^^^^^^
@@ -8,39 +8,39 @@ LL | type Baz = LinkedList<u8>;
88
= help: a VecDeque might work
99

1010
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
11-
--> $DIR/dlist.rs:11:12
11+
--> $DIR/dlist.rs:10:12
1212
|
1313
LL | fn foo(LinkedList<u8>);
1414
| ^^^^^^^^^^^^^^
1515
|
1616
= help: a VecDeque might work
1717

1818
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
19-
--> $DIR/dlist.rs:12:23
19+
--> $DIR/dlist.rs:11:23
2020
|
2121
LL | const BAR: Option<LinkedList<u8>>;
2222
| ^^^^^^^^^^^^^^
2323
|
2424
= help: a VecDeque might work
2525

2626
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
27-
--> $DIR/dlist.rs:23:15
27+
--> $DIR/dlist.rs:22:15
2828
|
2929
LL | fn foo(_: LinkedList<u8>) {}
3030
| ^^^^^^^^^^^^^^
3131
|
3232
= help: a VecDeque might work
3333

3434
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
35-
--> $DIR/dlist.rs:26:39
35+
--> $DIR/dlist.rs:25:39
3636
|
3737
LL | pub fn test(my_favourite_linked_list: LinkedList<u8>) {
3838
| ^^^^^^^^^^^^^^
3939
|
4040
= help: a VecDeque might work
4141

4242
error: I see you're using a LinkedList! Perhaps you meant some other data structure?
43-
--> $DIR/dlist.rs:30:29
43+
--> $DIR/dlist.rs:29:29
4444
|
4545
LL | pub fn test_ret() -> Option<LinkedList<u8>> {
4646
| ^^^^^^^^^^^^^^

0 commit comments

Comments
 (0)