summary refs log tree commit diff
path: root/src/test/ui/impl-trait/binding-without-value.stderr
blob: 0d2faeaf85d10be60785746009a2de1eed8ac1ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0720]: cannot resolve opaque type
  --> $DIR/binding-without-value.rs:5:13
   |
LL |     let _ : impl Copy;
   |         -   ^^^^^^^^^ cannot resolve opaque type
   |         |
   |         this binding might not have a concrete type
   |
help: set the binding to a value for a concrete type to be resolved
   |
LL |     let _ : impl Copy = /* value */;
   |                       ^^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0720`.