2020-11-10 03:08:51 -06:00
|
|
|
error[E0277]: the trait bound `(): Foo<N>` is not satisfied
|
2023-08-26 14:25:46 -05:00
|
|
|
--> $DIR/exhaustive-value.rs:262:6
|
2020-11-10 03:08:51 -06:00
|
|
|
|
|
|
|
|
LL | <() as Foo<N>>::test()
|
2023-08-26 14:25:46 -05:00
|
|
|
| ^^ the trait `Foo<N>` is not implemented for `()`
|
2020-11-10 03:08:51 -06:00
|
|
|
|
|
2022-03-26 21:02:07 -05:00
|
|
|
= help: the following other types implement trait `Foo<N>`:
|
2024-06-07 09:54:42 -05:00
|
|
|
`()` implements `Foo<0>`
|
|
|
|
`()` implements `Foo<100>`
|
|
|
|
`()` implements `Foo<101>`
|
|
|
|
`()` implements `Foo<102>`
|
|
|
|
`()` implements `Foo<103>`
|
|
|
|
`()` implements `Foo<104>`
|
|
|
|
`()` implements `Foo<105>`
|
|
|
|
`()` implements `Foo<106>`
|
2021-12-13 14:56:40 -06:00
|
|
|
and 248 others
|
2020-11-10 03:08:51 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2020-11-10 03:08:51 -06:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|