mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
611 B
Plaintext
17 lines
611 B
Plaintext
error[E0277]: the trait bound `T: GlUniformScalar` is not satisfied
|
|
--> $DIR/assoc-const-as-fn.rs:14:40
|
|
|
|
|
LL | <T as GlUniformScalar>::FACTORY(1, value);
|
|
| ------------------------------- ^^^^^ the trait `GlUniformScalar` is not implemented for `T`
|
|
| |
|
|
| required by a bound introduced by this call
|
|
|
|
|
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`.
|