]> git.proxmox.com Git - rustc.git/blame - tests/ui/closures/print/closure-print-generic-1.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / closures / print / closure-print-generic-1.stderr
CommitLineData
1b1a35ee
XL
1error[E0382]: use of moved value: `c`
2 --> $DIR/closure-print-generic-1.rs:17:5
3 |
4LL | let c = to_fn_once(move || {
781aab86 5 | - move occurs because `c` has type `{closure@$DIR/closure-print-generic-1.rs:12:24: 12:31}`, which does not implement the `Copy` trait
1b1a35ee
XL
6...
7LL | c();
8 | --- `c` moved due to this call
9LL | c();
10 | ^ value used here after move
11 |
12note: this value implements `FnOnce`, which causes it to be moved when called
13 --> $DIR/closure-print-generic-1.rs:16:5
14 |
15LL | c();
16 | ^
17
18error: aborting due to previous error
19
20For more information about this error, try `rustc --explain E0382`.