1
1
error: `#[panic_handler]` function required, but not found
2
2
3
3
error[E0308]: mismatched types
4
- --> $DIR/issue-54505-no-std.rs:24 :16
4
+ --> $DIR/issue-54505-no-std.rs:28 :16
5
5
|
6
6
LL | take_range(0..1);
7
7
| ^^^^
@@ -13,7 +13,7 @@ LL | take_range(0..1);
13
13
found type `core::ops::Range<{integer}>`
14
14
15
15
error[E0308]: mismatched types
16
- --> $DIR/issue-54505-no-std.rs:29 :16
16
+ --> $DIR/issue-54505-no-std.rs:33 :16
17
17
|
18
18
LL | take_range(1..);
19
19
| ^^^
@@ -25,7 +25,7 @@ LL | take_range(1..);
25
25
found type `core::ops::RangeFrom<{integer}>`
26
26
27
27
error[E0308]: mismatched types
28
- --> $DIR/issue-54505-no-std.rs:34 :16
28
+ --> $DIR/issue-54505-no-std.rs:38 :16
29
29
|
30
30
LL | take_range(..);
31
31
| ^^
@@ -37,7 +37,7 @@ LL | take_range(..);
37
37
found type `core::ops::RangeFull`
38
38
39
39
error[E0308]: mismatched types
40
- --> $DIR/issue-54505-no-std.rs:39 :16
40
+ --> $DIR/issue-54505-no-std.rs:43 :16
41
41
|
42
42
LL | take_range(0..=1);
43
43
| ^^^^^
@@ -49,7 +49,7 @@ LL | take_range(0..=1);
49
49
found type `core::ops::RangeInclusive<{integer}>`
50
50
51
51
error[E0308]: mismatched types
52
- --> $DIR/issue-54505-no-std.rs:44 :16
52
+ --> $DIR/issue-54505-no-std.rs:48 :16
53
53
|
54
54
LL | take_range(..5);
55
55
| ^^^
@@ -61,7 +61,7 @@ LL | take_range(..5);
61
61
found type `core::ops::RangeTo<{integer}>`
62
62
63
63
error[E0308]: mismatched types
64
- --> $DIR/issue-54505-no-std.rs:49 :16
64
+ --> $DIR/issue-54505-no-std.rs:53 :16
65
65
|
66
66
LL | take_range(..=42);
67
67
| ^^^^^
0 commit comments