rust/tests/ui/crashes/ice-3969.stderr

35 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-10-23 02:42:52 -05:00
error: trait bound str: std::marker::Sized does not depend on any type or lifetime parameters
--> $DIR/ice-3969.rs:20:10
|
2021-10-23 02:42:52 -05:00
LL | str: Sized;
| ^^^^^
|
2021-10-23 02:42:52 -05:00
= note: `-D trivial-bounds` implied by `-D warnings`
2021-10-23 02:42:52 -05:00
error: trait bound for<'a> Dst<(dyn A + 'a)>: std::marker::Sized does not depend on any type or lifetime parameters
--> $DIR/ice-3969.rs:24:30
|
2021-10-23 02:42:52 -05:00
LL | for<'a> Dst<dyn A + 'a>: Sized,
| ^^^^^
error: trait bound str: std::marker::Sized does not depend on any type or lifetime parameters
--> $DIR/ice-3969.rs:31:10
2021-04-29 11:37:22 -05:00
|
2021-10-23 02:42:52 -05:00
LL | str: Sized,
| ^^^^^
2021-10-23 02:42:52 -05:00
error: trait bound std::string::String: std::ops::Neg does not depend on any type or lifetime parameters
--> $DIR/ice-3969.rs:38:13
|
2021-10-23 02:42:52 -05:00
LL | String: ::std::ops::Neg<Output = String>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: trait bound i32: std::iter::Iterator does not depend on any type or lifetime parameters
--> $DIR/ice-3969.rs:45:10
2021-04-29 11:37:22 -05:00
|
2021-10-23 02:42:52 -05:00
LL | i32: Iterator,
| ^^^^^^^^
2021-10-23 02:42:52 -05:00
error: aborting due to 5 previous errors