blob: fd1bbb9c5673d2df5eb580b786cbf6290e3d9585 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0128]: generic parameters with a default cannot use forward declared identifiers
--> $DIR/issue-26812.rs:3:10
|
LL | fn avg<T=T::Item>(_: T) {}
| ^^^^^^^ defaulted generic parameters cannot be forward declared
error: aborting due to previous error
For more information about this error, try `rustc --explain E0128`.
|