You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #31414 - durka:clone-copy, r=alexcrichton
special-case #[derive(Copy, Clone)] with a shallow clone
If a type is Copy then its Clone implementation can be a no-op. Currently `#[derive(Clone)]` generates a deep clone anyway. This can lead to lots of code bloat.
This PR detects the case where Copy and Clone are both being derived (the general case of "is this type Copy" can't be determined by a syntax extension) and generates the shallow Clone impl. Right now this can only be done if there are no type parameters (see #31085 (comment)), but this restriction can be removed after specialization.
Fixes#31085.
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
//! Test that #[derive(Copy, Clone)] produces a shallow copy
12
+
//! even when a member violates RFC 1521
13
+
14
+
use std::sync::atomic::{AtomicBool,ATOMIC_BOOL_INIT,Ordering};
15
+
16
+
/// A struct that pretends to be Copy, but actually does something
17
+
/// in its Clone impl
18
+
#[derive(Copy)]
19
+
structLiar;
20
+
21
+
/// Static cooperating with the rogue Clone impl
22
+
staticCLONED:AtomicBool = ATOMIC_BOOL_INIT;
23
+
24
+
implCloneforLiar{
25
+
fnclone(&self) -> Self{
26
+
// this makes Clone vs Copy observable
27
+
CLONED.store(true,Ordering::SeqCst);
28
+
29
+
*self
30
+
}
31
+
}
32
+
33
+
/// This struct is actually Copy... at least, it thinks it is!
34
+
#[derive(Copy,Clone)]
35
+
structInnocent(Liar);
36
+
37
+
implInnocent{
38
+
fnnew() -> Self{
39
+
Innocent(Liar)
40
+
}
41
+
}
42
+
43
+
fnmain(){
44
+
let _ = Innocent::new().clone();
45
+
// if Innocent was byte-for-byte copied, CLONED will still be false
0 commit comments