blob: 310508022611014e2a037186ca2071c947c13f67 (
plain)
1
2
3
4
5
6
7
8
|
error[E0128]: type parameters with a default cannot use forward declared identifiers
--> $DIR/issue-18183.rs:11:20
|
11 | pub struct Foo<Bar=Bar>(Bar); //~ ERROR E0128
| ^^^ defaulted type parameters cannot be forward declared
error: aborting due to previous error
|