blob: be67ea3f5039ba4f6dd5c29907efba4283f84b56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0403`.
|