16 lines
598 B
Text
16 lines
598 B
Text
error[E0207]: the type parameter `V` is not constrained by the impl trait, self type, or predicates
|
|
--> $DIR/resolve-impl-before-constrain-check.rs:9:10
|
|
|
|
|
LL | impl<V: ?Sized> Callable for () {
|
|
| ^ unconstrained type parameter
|
|
|
|
error[E0282]: type annotations needed
|
|
--> $DIR/resolve-impl-before-constrain-check.rs:17:6
|
|
|
|
|
LL | <() as Callable>::call()
|
|
| ^^ cannot infer type for type parameter `V`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
Some errors have detailed explanations: E0207, E0282.
|
|
For more information about an error, try `rustc --explain E0207`.
|