2020-11-10 10:08:51 +01:00
|
|
|
error[E0277]: the trait bound `(): Foo<N>` is not satisfied
|
2023-08-26 19:25:46 +00:00
|
|
|
--> $DIR/exhaustive-value.rs:262:6
|
2020-11-10 10:08:51 +01:00
|
|
|
|
|
|
|
|
LL | <() as Foo<N>>::test()
|
2023-08-26 19:25:46 +00:00
|
|
|
| ^^ the trait `Foo<N>` is not implemented for `()`
|
2020-11-10 10:08:51 +01:00
|
|
|
|
|
2022-03-27 02:02:07 +00:00
|
|
|
= help: the following other types implement trait `Foo<N>`:
|
2022-07-19 02:25:14 +03:00
|
|
|
<() as Foo<0>>
|
2023-06-27 23:31:06 +00:00
|
|
|
<() as Foo<1>>
|
|
|
|
<() as Foo<2>>
|
|
|
|
<() as Foo<3>>
|
|
|
|
<() as Foo<4>>
|
|
|
|
<() as Foo<5>>
|
|
|
|
<() as Foo<6>>
|
|
|
|
<() as Foo<7>>
|
2021-12-13 20:56:40 +00:00
|
|
|
and 248 others
|
2020-11-10 10:08:51 +01:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|