2020-09-09 02:43:53 -05:00
|
|
|
error[E0423]: expected value, found type parameter `T`
|
|
|
|
--> $DIR/issue-69654.rs:5:25
|
|
|
|
|
|
|
|
|
LL | impl<T> Bar<T> for [u8; T] {}
|
2022-08-16 14:53:06 -05:00
|
|
|
| - ^ not a value
|
|
|
|
| |
|
2022-09-21 18:32:37 -05:00
|
|
|
| found this type parameter
|
2020-09-09 02:43:53 -05:00
|
|
|
|
2022-07-18 18:25:14 -05:00
|
|
|
error[E0599]: the function or associated item `foo` exists for struct `Foo<_>`, but its trait bounds were not satisfied
|
2021-01-24 13:08:12 -06:00
|
|
|
--> $DIR/issue-69654.rs:17:10
|
|
|
|
|
|
|
|
|
LL | struct Foo<const N: usize> {}
|
2022-07-01 18:47:26 -05:00
|
|
|
| -------------------------- function or associated item `foo` not found for this struct
|
2021-01-24 13:08:12 -06:00
|
|
|
...
|
|
|
|
LL | Foo::foo();
|
2022-07-18 18:25:14 -05:00
|
|
|
| ^^^ function or associated item cannot be called on `Foo<_>` due to unsatisfied trait bounds
|
2021-01-24 13:08:12 -06:00
|
|
|
|
|
2023-01-10 21:07:14 -06:00
|
|
|
note: trait bound `[u8; _]: Bar<[(); _]>` was not satisfied
|
|
|
|
--> $DIR/issue-69654.rs:11:14
|
|
|
|
|
|
|
|
|
LL | impl<const N: usize> Foo<N>
|
|
|
|
| ------
|
|
|
|
LL | where
|
|
|
|
LL | [u8; N]: Bar<[(); N]>,
|
|
|
|
| ^^^^^^^^^^^^ unsatisfied trait bound introduced here
|
2021-01-24 13:08:12 -06:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2020-09-09 02:43:53 -05:00
|
|
|
|
2021-01-24 13:08:12 -06:00
|
|
|
Some errors have detailed explanations: E0423, E0599.
|
|
|
|
For more information about an error, try `rustc --explain E0423`.
|