2018-10-01 17:23:57 -05:00
|
|
|
error: `#[panic_handler]` function required, but not found
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-21 02:50:38 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:27:16
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
|
LL | take_range(0..1);
|
|
|
|
| ^^^^
|
|
|
|
| |
|
|
|
|
| expected reference, found struct `core::ops::Range`
|
|
|
|
| help: consider borrowing here: `&(0..1)`
|
|
|
|
|
|
2019-11-13 16:16:56 -06:00
|
|
|
= note: expected reference `&_`
|
|
|
|
found struct `core::ops::Range<{integer}>`
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-21 02:50:38 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:32:16
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
|
LL | take_range(1..);
|
|
|
|
| ^^^
|
|
|
|
| |
|
|
|
|
| expected reference, found struct `core::ops::RangeFrom`
|
|
|
|
| help: consider borrowing here: `&(1..)`
|
|
|
|
|
|
2019-11-13 16:16:56 -06:00
|
|
|
= note: expected reference `&_`
|
|
|
|
found struct `core::ops::RangeFrom<{integer}>`
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-21 02:50:38 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:37:16
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
|
LL | take_range(..);
|
|
|
|
| ^^
|
|
|
|
| |
|
|
|
|
| expected reference, found struct `core::ops::RangeFull`
|
|
|
|
| help: consider borrowing here: `&(..)`
|
|
|
|
|
|
2019-11-13 16:16:56 -06:00
|
|
|
= note: expected reference `&_`
|
|
|
|
found struct `core::ops::RangeFull`
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-21 02:50:38 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:42:16
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
|
LL | take_range(0..=1);
|
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| expected reference, found struct `core::ops::RangeInclusive`
|
|
|
|
| help: consider borrowing here: `&(0..=1)`
|
|
|
|
|
|
2019-11-13 16:16:56 -06:00
|
|
|
= note: expected reference `&_`
|
|
|
|
found struct `core::ops::RangeInclusive<{integer}>`
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-21 02:50:38 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:47:16
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
|
LL | take_range(..5);
|
|
|
|
| ^^^
|
|
|
|
| |
|
|
|
|
| expected reference, found struct `core::ops::RangeTo`
|
|
|
|
| help: consider borrowing here: `&(..5)`
|
|
|
|
|
|
2019-11-13 16:16:56 -06:00
|
|
|
= note: expected reference `&_`
|
|
|
|
found struct `core::ops::RangeTo<{integer}>`
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2020-03-21 02:50:38 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:52:16
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
|
LL | take_range(..=42);
|
|
|
|
| ^^^^^
|
|
|
|
| |
|
|
|
|
| expected reference, found struct `core::ops::RangeToInclusive`
|
|
|
|
| help: consider borrowing here: `&(..=42)`
|
|
|
|
|
|
2019-11-13 16:16:56 -06:00
|
|
|
= note: expected reference `&_`
|
|
|
|
found struct `core::ops::RangeToInclusive<{integer}>`
|
2018-10-01 17:23:57 -05:00
|
|
|
|
2018-10-08 11:39:09 -05:00
|
|
|
error: aborting due to 7 previous errors
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|