mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
28 lines
712 B
Plaintext
28 lines
712 B
Plaintext
error[E0208]: [+, +]
|
|
--> $DIR/variance-trait-bounds.rs:16:1
|
|
|
|
|
LL | struct TestStruct<U,T:Setter<U>> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0208]: [*, +]
|
|
--> $DIR/variance-trait-bounds.rs:21:1
|
|
|
|
|
LL | enum TestEnum<U,T:Setter<U>> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0208]: [*, +]
|
|
--> $DIR/variance-trait-bounds.rs:26:1
|
|
|
|
|
LL | struct TestContraStruct<U,T:Setter<U>> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0208]: [*, +]
|
|
--> $DIR/variance-trait-bounds.rs:31:1
|
|
|
|
|
LL | struct TestBox<U,T:Getter<U>+Setter<U>> {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0208`.
|