2022-12-03 16:40:30 -06:00
|
|
|
error[E0403]: the name `M` is already used for a generic parameter in this item's generic parameters
|
|
|
|
--> $DIR/self-referential.rs:1:30
|
|
|
|
|
|
|
|
|
LL | trait Foo<const M: u8, const M: u8 = M> {}
|
|
|
|
| - ^ already used
|
|
|
|
| |
|
|
|
|
| first use of `M`
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-12-03 16:40:30 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0403`.
|