rust/src/test/ui/const-generics/const_evaluatable_checked/object-safety-ok-infer-err.stderr

13 lines
588 B
Plaintext
Raw Normal View History

error[E0284]: type annotations needed: cannot satisfy `the constant `use_dyn::<{_: usize}>::{constant#0}` can be evaluated`
2020-10-26 12:46:20 +01:00
--> $DIR/object-safety-ok-infer-err.rs:20:5
|
LL | fn use_dyn<const N: usize>(v: &dyn Foo<N>) where [u8; N + 1]: Sized {
| ----- required by this bound in `use_dyn`
...
LL | use_dyn(&());
| ^^^^^^^ cannot satisfy `the constant `use_dyn::<{_: usize}>::{constant#0}` can be evaluated`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0284`.