blob: 221f05b915090779ccb24eb193ab220c40588afc [file] [log] [blame]
error[E0244]: wrong number of type arguments: expected 0, found 1
--> $DIR/typeck-builtin-bound-type-parameters.rs:11:11
|
LL | fn foo1<T:Copy<U>, U>(x: T) {}
| ^^^^^^^ expected no type arguments
error[E0244]: wrong number of type arguments: expected 0, found 1
--> $DIR/typeck-builtin-bound-type-parameters.rs:14:14
|
LL | trait Trait: Copy<Send> {}
| ^^^^^^^^^^ expected no type arguments
error[E0244]: wrong number of type arguments: expected 0, found 1
--> $DIR/typeck-builtin-bound-type-parameters.rs:17:21
|
LL | struct MyStruct1<T: Copy<T>>;
| ^^^^^^^ expected no type arguments
error[E0107]: wrong number of lifetime parameters: expected 0, found 1
--> $DIR/typeck-builtin-bound-type-parameters.rs:20:25
|
LL | struct MyStruct2<'a, T: Copy<'a>>;
| ^^^^^^^^ unexpected lifetime parameter
error[E0107]: wrong number of lifetime parameters: expected 0, found 1
--> $DIR/typeck-builtin-bound-type-parameters.rs:24:15
|
LL | fn foo2<'a, T:Copy<'a, U>, U>(x: T) {}
| ^^^^^^^^^^^ unexpected lifetime parameter
error[E0244]: wrong number of type arguments: expected 0, found 1
--> $DIR/typeck-builtin-bound-type-parameters.rs:24:15
|
LL | fn foo2<'a, T:Copy<'a, U>, U>(x: T) {}
| ^^^^^^^^^^^ expected no type arguments
error: aborting due to 6 previous errors
Some errors occurred: E0107, E0244.
For more information about an error, try `rustc --explain E0107`.