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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
680 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 11:46:20 +00:00
--> $DIR/object-safety-ok-infer-err.rs:20:5
|
LL | use_dyn(&());
| ^^^^^^^ cannot satisfy `the constant `use_dyn::<{_: usize}>::{constant#0}` can be evaluated`
|
note: required by a bound in `use_dyn`
--> $DIR/object-safety-ok-infer-err.rs:14:55
|
LL | fn use_dyn<const N: usize>(v: &dyn Foo<N>) where [u8; N + 1]: Sized {
| ^^^^^ required by this bound in `use_dyn`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0284`.