File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
branches/beta/src/libcore Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
31
31
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
32
32
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
33
33
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34
- refs/heads/beta: 74199c24d0c09d5096eba1c1da7ce2d85a207d4b
34
+ refs/heads/beta: f5491e63b4a4389aded637b872b7e02180b9585b
35
35
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
36
36
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
37
37
refs/heads/tmp: c65fb1a81e5dc58cf171cc47f65de9e6e2119247
Original file line number Diff line number Diff line change @@ -41,8 +41,7 @@ pub unsafe trait Send: 'static {
41
41
// empty.
42
42
}
43
43
/// Types able to be transferred across thread boundaries.
44
- #[ unstable( feature = "core" ,
45
- reason = "will be overhauled with new lifetime rules; see RFC 458" ) ]
44
+ #[ stable( feature = "rust1" , since = "1.0.0" ) ]
46
45
#[ lang="send" ]
47
46
#[ rustc_on_unimplemented = "`{Self}` cannot be sent between threads safely" ]
48
47
#[ cfg( not( stage0) ) ]
@@ -208,8 +207,7 @@ pub trait Copy : MarkerTrait {
208
207
/// around the value(s) which can be mutated when behind a `&`
209
208
/// reference; not doing this is undefined behaviour (for example,
210
209
/// `transmute`-ing from `&T` to `&mut T` is illegal).
211
- #[ unstable( feature = "core" ,
212
- reason = "will be overhauled with new lifetime rules; see RFC 458" ) ]
210
+ #[ stable( feature = "rust1" , since = "1.0.0" ) ]
213
211
#[ lang="sync" ]
214
212
#[ rustc_on_unimplemented = "`{Self}` cannot be shared between threads safely" ]
215
213
pub unsafe trait Sync : MarkerTrait {
You can’t perform that action at this time.
0 commit comments