2020-11-10 09:08:51 +00:00
|
|
|
error[E0277]: the trait bound `(): Foo<N>` is not satisfied
|
2021-08-27 16:04:57 +00:00
|
|
|
--> $DIR/exhaustive-value.rs:262:5
|
2020-11-10 09:08:51 +00:00
|
|
|
|
|
|
|
|
LL | <() as Foo<N>>::test()
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^ the trait `Foo<N>` is not implemented for `()`
|
|
|
|
|
|
2022-03-27 02:02:07 +00:00
|
|
|
= help: the following other types implement trait `Foo<N>`:
|
2020-11-10 09:08:51 +00:00
|
|
|
<() as Foo<0_u8>>
|
|
|
|
<() as Foo<100_u8>>
|
|
|
|
<() as Foo<101_u8>>
|
|
|
|
<() as Foo<102_u8>>
|
2022-03-26 23:14:47 +00:00
|
|
|
<() as Foo<103_u8>>
|
|
|
|
<() as Foo<104_u8>>
|
|
|
|
<() as Foo<105_u8>>
|
|
|
|
<() as Foo<106_u8>>
|
2021-12-13 20:56:40 +00:00
|
|
|
and 248 others
|
2020-11-10 09:08:51 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|