blob: d55d968b600aa45cffc938425922db76d329e27d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0277]: the trait bound `T: GlUniformScalar` is not satisfied
--> $DIR/assoc-const-as-fn.rs:14:6
|
LL | <T as GlUniformScalar>::FACTORY(1, value);
| ^ the trait `GlUniformScalar` is not implemented for `T`
|
help: consider further restricting this bound
|
LL | pub fn foo<T: UniformScalar + GlUniformScalar>(value: T) {
| +++++++++++++++++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.
|