]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/binding-without-value.stderr
Merge commit '953f024793dab92745fee9cd2c4dee6a60451771' into clippyup
[rust.git] / src / test / ui / impl-trait / binding-without-value.stderr
1 error[E0720]: cannot resolve opaque type
2   --> $DIR/binding-without-value.rs:5:13
3    |
4 LL |     let _ : impl Copy;
5    |         -   ^^^^^^^^^ cannot resolve opaque type
6    |         |
7    |         this binding might not have a concrete type
8    |
9 help: set the binding to a value for a concrete type to be resolved
10    |
11 LL |     let _ : impl Copy = /* value */;
12    |                       ^^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0720`.