2018-10-01 17:23:57 -05:00
|
|
|
error: `#[panic_handler]` function required, but not found
|
|
|
|
|
|
|
|
error: language item required, but not found: `eh_personality`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-10-02 16:10:04 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:21: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)`
|
|
|
|
|
|
|
|
|
= note: expected type `&_`
|
|
|
|
found type `core::ops::Range<{integer}>`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-10-02 16:10:04 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:26: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..)`
|
|
|
|
|
|
|
|
|
= note: expected type `&_`
|
|
|
|
found type `core::ops::RangeFrom<{integer}>`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-10-02 16:10:04 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:31:16
|
2018-10-01 17:23:57 -05:00
|
|
|
|
|
|
|
|
LL | take_range(..);
|
|
|
|
| ^^
|
|
|
|
| |
|
|
|
|
| expected reference, found struct `core::ops::RangeFull`
|
|
|
|
| help: consider borrowing here: `&(..)`
|
|
|
|
|
|
|
|
|
= note: expected type `&_`
|
|
|
|
found type `core::ops::RangeFull`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-10-02 16:10:04 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:36: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)`
|
|
|
|
|
|
|
|
|
= note: expected type `&_`
|
|
|
|
found type `core::ops::RangeInclusive<{integer}>`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-10-02 16:10:04 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:41: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)`
|
|
|
|
|
|
|
|
|
= note: expected type `&_`
|
|
|
|
found type `core::ops::RangeTo<{integer}>`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
2018-10-02 16:10:04 -05:00
|
|
|
--> $DIR/issue-54505-no-std.rs:46: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)`
|
|
|
|
|
|
|
|
|
= note: expected type `&_`
|
|
|
|
found type `core::ops::RangeToInclusive<{integer}>`
|
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|