2018-02-07 21:35:35 -06:00
|
|
|
error[E0403]: the name `T` is already used for a type parameter in this type parameter list
|
|
|
|
--> $DIR/E0403.rs:11:11
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo<T, T>(s: T, u: T) {} //~ ERROR E0403
|
2018-02-07 21:35:35 -06:00
|
|
|
| - ^ already used
|
|
|
|
| |
|
|
|
|
| first use of `T`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0403"
|