File tree 3 files changed +0
-4
lines changed
3 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,6 @@ impl<B: ?Sized + ToOwned> Cow<'_, B> {
225
225
/// assert!(!bull.is_borrowed());
226
226
/// ```
227
227
#[ unstable( feature = "cow_is_borrowed" , issue = "65143" ) ]
228
- #[ rustc_const_unstable( feature = "const_cow_is_borrowed" , issue = "65143" ) ]
229
228
pub const fn is_borrowed ( & self ) -> bool {
230
229
match * self {
231
230
Borrowed ( _) => true ,
@@ -248,7 +247,6 @@ impl<B: ?Sized + ToOwned> Cow<'_, B> {
248
247
/// assert!(!bull.is_owned());
249
248
/// ```
250
249
#[ unstable( feature = "cow_is_borrowed" , issue = "65143" ) ]
251
- #[ rustc_const_unstable( feature = "const_cow_is_borrowed" , issue = "65143" ) ]
252
250
pub const fn is_owned ( & self ) -> bool {
253
251
!self . is_borrowed ( )
254
252
}
Original file line number Diff line number Diff line change 108
108
#![ feature( coerce_unsized) ]
109
109
#![ feature( const_align_of_val) ]
110
110
#![ feature( const_box) ]
111
- #![ feature( const_cow_is_borrowed) ]
112
111
#![ feature( const_eval_select) ]
113
112
#![ feature( const_heap) ]
114
113
#![ feature( const_maybe_uninit_write) ]
Original file line number Diff line number Diff line change 4
4
#![ feature( assert_matches) ]
5
5
#![ feature( btree_extract_if) ]
6
6
#![ feature( cow_is_borrowed) ]
7
- #![ feature( const_cow_is_borrowed) ]
8
7
#![ feature( const_heap) ]
9
8
#![ cfg_attr( bootstrap, feature( const_mut_refs) ) ]
10
9
#![ feature( const_ptr_write) ]
You can’t perform that action at this time.
0 commit comments