]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/defaults/wfness.stderr
Rollup merge of #104672 - Voultapher:unify-sort-modules, r=thomcc
[rust.git] / tests / ui / const-generics / defaults / wfness.stderr
1 error[E0080]: evaluation of constant value failed
2   --> $DIR/wfness.rs:1:33
3    |
4 LL | struct Ooopsies<const N: u8 = { u8::MAX + 1 }>;
5    |                                 ^^^^^^^^^^^ attempt to compute `u8::MAX + 1_u8`, which would overflow
6
7 error[E0277]: the trait bound `(): Trait<2>` is not satisfied
8   --> $DIR/wfness.rs:8:9
9    |
10 LL |     (): Trait<N>;
11    |         ^^^^^^^^ the trait `Trait<2>` is not implemented for `()`
12    |
13    = help: the trait `Trait<3>` is implemented for `()`
14
15 error[E0277]: the trait bound `(): Trait<1>` is not satisfied
16   --> $DIR/wfness.rs:18:13
17    |
18 LL | fn foo() -> DependentDefaultWfness {
19    |             ^^^^^^^^^^^^^^^^^^^^^^ the trait `Trait<1>` is not implemented for `()`
20    |
21    = help: the trait `Trait<3>` is implemented for `()`
22 note: required by a bound in `WhereClause`
23   --> $DIR/wfness.rs:8:9
24    |
25 LL | struct WhereClause<const N: u8 = 2>
26    |        ----------- required by a bound in this
27 LL | where
28 LL |     (): Trait<N>;
29    |         ^^^^^^^^ required by this bound in `WhereClause`
30
31 error: aborting due to 3 previous errors
32
33 Some errors have detailed explanations: E0080, E0277.
34 For more information about an error, try `rustc --explain E0080`.