]> git.proxmox.com Git - rustc.git/blob - tests/ui/closures/print/closure-print-generic-verbose-1.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / closures / print / closure-print-generic-verbose-1.stderr
1 error[E0382]: use of moved value: `c`
2 --> $DIR/closure-print-generic-verbose-1.rs:17:5
3 |
4 LL | let c = to_fn_once(move|| {
5 | - move occurs because `c` has type `[f<T>::{closure#0} closure_kind_ty=i32 closure_sig_as_fn_ptr_ty=extern "rust-call" fn(()) upvar_tys=(Foo<&'_#9r str>, T)]`, which does not implement the `Copy` trait
6 ...
7 LL | c();
8 | --- `c` moved due to this call
9 LL | c();
10 | ^ value used here after move
11 |
12 note: this value implements `FnOnce`, which causes it to be moved when called
13 --> $DIR/closure-print-generic-verbose-1.rs:16:5
14 |
15 LL | c();
16 | ^
17
18 error: aborting due to previous error
19
20 For more information about this error, try `rustc --explain E0382`.