rust/tests/ui/traits/bound/on-structs-and-enums.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

100 lines
3.0 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `T: Trait` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/on-structs-and-enums.rs:13:9
2018-08-08 07:28:26 -05:00
|
LL | impl<T> Foo<T> {
| ^^^^^^ the trait `Trait` is not implemented for `T`
|
note: required by a bound in `Foo`
--> $DIR/on-structs-and-enums.rs:3:14
|
LL | struct Foo<T:Trait> {
| ^^^^^ required by this bound in `Foo`
help: consider restricting type parameter `T`
|
LL | impl<T: Trait> Foo<T> {
| +++++++
2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `isize: Trait` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/on-structs-and-enums.rs:19:8
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | a: Foo<isize>,
| ^^^^^^^^^^ the trait `Trait` is not implemented for `isize`
|
note: required by a bound in `Foo`
--> $DIR/on-structs-and-enums.rs:3:14
|
LL | struct Foo<T:Trait> {
| ^^^^^ required by this bound in `Foo`
2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `usize: Trait` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/on-structs-and-enums.rs:23:10
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | Quux(Bar<usize>),
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^ the trait `Trait` is not implemented for `usize`
|
note: required by a bound in `Bar`
--> $DIR/on-structs-and-enums.rs:7:12
|
LL | enum Bar<T:Trait> {
| ^^^^^ required by this bound in `Bar`
2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `U: Trait` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/on-structs-and-enums.rs:27:8
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | b: Foo<U>,
| ^^^^^^ the trait `Trait` is not implemented for `U`
|
note: required by a bound in `Foo`
--> $DIR/on-structs-and-enums.rs:3:14
|
LL | struct Foo<T:Trait> {
| ^^^^^ required by this bound in `Foo`
help: consider restricting type parameter `U`
|
LL | struct Badness<U: Trait> {
| +++++++
2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `V: Trait` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/on-structs-and-enums.rs:31:21
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | EvenMoreBadness(Bar<V>),
2018-08-08 07:28:26 -05:00
| ^^^^^^ the trait `Trait` is not implemented for `V`
|
note: required by a bound in `Bar`
--> $DIR/on-structs-and-enums.rs:7:12
|
LL | enum Bar<T:Trait> {
| ^^^^^ required by this bound in `Bar`
help: consider restricting type parameter `V`
|
LL | enum MoreBadness<V: Trait> {
| +++++++
2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `i32: Trait` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/on-structs-and-enums.rs:35:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | Foo<i32>,
2018-08-08 07:28:26 -05:00
| ^^^^^^^^ the trait `Trait` is not implemented for `i32`
|
note: required by a bound in `Foo`
--> $DIR/on-structs-and-enums.rs:3:14
|
LL | struct Foo<T:Trait> {
| ^^^^^ required by this bound in `Foo`
2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `u8: Trait` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/on-structs-and-enums.rs:39:29
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | DictionaryLike { field: Bar<u8> },
| ^^^^^^^ the trait `Trait` is not implemented for `u8`
|
note: required by a bound in `Bar`
--> $DIR/on-structs-and-enums.rs:7:12
|
LL | enum Bar<T:Trait> {
| ^^^^^ required by this bound in `Bar`
2018-08-08 07:28:26 -05:00
error: aborting due to 7 previous errors
For more information about this error, try `rustc --explain E0277`.