2018-03-22 03:56:04 -05:00
|
|
|
error[E0277]: the trait bound `[(); 0]: Foo` is not satisfied
|
2023-08-25 13:28:34 -05:00
|
|
|
--> $DIR/unevaluated_fixed_size_array_len.rs:12:6
|
2018-03-22 03:56:04 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | <[(); 0] as Foo>::foo()
|
2023-08-25 13:28:34 -05:00
|
|
|
| ^^^^^^^ the trait `Foo` is not implemented for `[(); 0]`
|
2018-03-22 03:56:04 -05:00
|
|
|
|
|
2021-12-13 14:56:40 -06:00
|
|
|
= help: the trait `Foo` is implemented for `[(); 1]`
|
2018-03-22 03:56:04 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2018-03-22 03:56:04 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|