]> git.proxmox.com Git - rustc.git/blame - src/test/ui/non-copyable-void.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / non-copyable-void.stderr
CommitLineData
1b1a35ee 1error[E0599]: no method named `clone` found for enum `c_void` in the current scope
0731742a 2 --> $DIR/non-copyable-void.rs:11:23
b7449926
XL
3 |
4LL | let _z = (*y).clone();
1b1a35ee 5 | ^^^^^ method not found in `c_void`
ba9703b0 6 |
3dfed10e 7 ::: $SRC_DIR/core/src/clone.rs:LL:COL
ba9703b0
XL
8 |
9LL | fn clone(&self) -> Self;
10 | -----
11 | |
1b1a35ee
XL
12 | the method is available for `Arc<c_void>` here
13 | the method is available for `Rc<c_void>` here
b7449926
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0599`.