2022-12-03 09:32:29 +00:00
|
|
|
error[E0277]: the trait bound `T: GlUniformScalar` is not satisfied
|
2023-08-26 19:25:46 +00:00
|
|
|
--> $DIR/assoc-const-as-fn.rs:14:6
|
2022-12-03 09:32:29 +00:00
|
|
|
|
|
|
|
|
LL | <T as GlUniformScalar>::FACTORY(1, value);
|
2023-08-26 19:25:46 +00:00
|
|
|
| ^ the trait `GlUniformScalar` is not implemented for `T`
|
2022-12-03 09:32:29 +00:00
|
|
|
|
|
|
|
|
help: consider further restricting this bound
|
|
|
|
|
|
|
|
|
LL | pub fn foo<T: UniformScalar + GlUniformScalar>(value: T) {
|
|
|
|
| +++++++++++++++++
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-12-03 09:32:29 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|