11error: `#[panic_handler]` function required, but not found
22
33error[E0308]: mismatched types
4- --> $DIR/issue-54505-no-std.rs:24 :16
4+ --> $DIR/issue-54505-no-std.rs:28 :16
55 |
66LL | take_range(0..1);
77 | ^^^^
@@ -13,7 +13,7 @@ LL | take_range(0..1);
1313 found type `core::ops::Range<{integer}>`
1414
1515error[E0308]: mismatched types
16- --> $DIR/issue-54505-no-std.rs:29 :16
16+ --> $DIR/issue-54505-no-std.rs:33 :16
1717 |
1818LL | take_range(1..);
1919 | ^^^
@@ -25,7 +25,7 @@ LL | take_range(1..);
2525 found type `core::ops::RangeFrom<{integer}>`
2626
2727error[E0308]: mismatched types
28- --> $DIR/issue-54505-no-std.rs:34 :16
28+ --> $DIR/issue-54505-no-std.rs:38 :16
2929 |
3030LL | take_range(..);
3131 | ^^
@@ -37,7 +37,7 @@ LL | take_range(..);
3737 found type `core::ops::RangeFull`
3838
3939error[E0308]: mismatched types
40- --> $DIR/issue-54505-no-std.rs:39 :16
40+ --> $DIR/issue-54505-no-std.rs:43 :16
4141 |
4242LL | take_range(0..=1);
4343 | ^^^^^
@@ -49,7 +49,7 @@ LL | take_range(0..=1);
4949 found type `core::ops::RangeInclusive<{integer}>`
5050
5151error[E0308]: mismatched types
52- --> $DIR/issue-54505-no-std.rs:44 :16
52+ --> $DIR/issue-54505-no-std.rs:48 :16
5353 |
5454LL | take_range(..5);
5555 | ^^^
@@ -61,7 +61,7 @@ LL | take_range(..5);
6161 found type `core::ops::RangeTo<{integer}>`
6262
6363error[E0308]: mismatched types
64- --> $DIR/issue-54505-no-std.rs:49 :16
64+ --> $DIR/issue-54505-no-std.rs:53 :16
6565 |
6666LL | take_range(..=42);
6767 | ^^^^^
0 commit comments