rust/src/test/ui/range/issue-54505-no-std.stderr

78 lines
2.4 KiB
Plaintext
Raw Normal View History

2018-10-01 17:23:57 -05:00
error: `#[panic_handler]` function required, but not found
error[E0308]: mismatched types
2018-10-09 01:24:29 -05:00
--> $DIR/issue-54505-no-std.rs:28: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-09 01:24:29 -05:00
--> $DIR/issue-54505-no-std.rs:33: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-09 01:24:29 -05:00
--> $DIR/issue-54505-no-std.rs:38: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-09 01:24:29 -05:00
--> $DIR/issue-54505-no-std.rs:43: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-09 01:24:29 -05:00
--> $DIR/issue-54505-no-std.rs:48: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-09 01:24:29 -05:00
--> $DIR/issue-54505-no-std.rs:53: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}>`
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`.