File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1111,7 +1111,7 @@ impl<T: ?Sized> Rc<T> {
1111
1111
/// assert_eq!(*x, "foo");
1112
1112
/// ```
1113
1113
/// Other `Rc` pointers to the same allocation must be to the same type.
1114
- /// ```ignore
1114
+ /// ```no_run
1115
1115
/// #![feature(get_mut_unchecked)]
1116
1116
///
1117
1117
/// use std::rc::Rc;
@@ -1125,7 +1125,7 @@ impl<T: ?Sized> Rc<T> {
1125
1125
/// println!("{}", &*x); // Invalid UTF-8 in a str
1126
1126
/// ```
1127
1127
/// Other `Rc` pointers to the same allocation must be to the exact same type, including lifetimes.
1128
- /// ```ignore
1128
+ /// ```no_run
1129
1129
/// #![feature(get_mut_unchecked)]
1130
1130
///
1131
1131
/// use std::rc::Rc;
Original file line number Diff line number Diff line change @@ -1650,7 +1650,7 @@ impl<T: ?Sized> Arc<T> {
1650
1650
/// assert_eq!(*x, "foo");
1651
1651
/// ```
1652
1652
/// Other `Arc` pointers to the same allocation must be to the same type.
1653
- /// ```ignore
1653
+ /// ```no_run
1654
1654
/// #![feature(get_mut_unchecked)]
1655
1655
///
1656
1656
/// use std::sync::Arc;
@@ -1664,7 +1664,7 @@ impl<T: ?Sized> Arc<T> {
1664
1664
/// println!("{}", &*x); // Invalid UTF-8 in a str
1665
1665
/// ```
1666
1666
/// Other `Arc` pointers to the same allocation must be to the exact same type, including lifetimes.
1667
- /// ```ignore
1667
+ /// ```no_run
1668
1668
/// #![feature(get_mut_unchecked)]
1669
1669
///
1670
1670
/// use std::sync::Arc;
You can’t perform that action at this time.
0 commit comments