mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-30 14:01:51 +00:00
fix(core): Add #![feature(unbounded_shifts)]
to doctests for unbounded_shr
/unbounded_shl
This commit is contained in:
parent
79cbb878c7
commit
9907f617ab
@ -1321,6 +1321,7 @@ macro_rules! int_impl {
|
||||
///
|
||||
/// Basic usage:
|
||||
/// ```
|
||||
/// #![feature(unbounded_shifts)]
|
||||
#[doc = concat!("assert_eq!(0x1", stringify!($SelfT), ".unbounded_shl(4), 0x10);")]
|
||||
#[doc = concat!("assert_eq!(0x1", stringify!($SelfT), ".unbounded_shl(129), 0);")]
|
||||
/// ```
|
||||
@ -1447,10 +1448,11 @@ macro_rules! int_impl {
|
||||
///
|
||||
/// Basic usage:
|
||||
/// ```
|
||||
/// #![feature(unbounded_shifts)]
|
||||
#[doc = concat!("assert_eq!(0x10", stringify!($SelfT), ".unbounded_shl(4), 0x1);")]
|
||||
#[doc = concat!("assert_eq!(0x10", stringify!($SelfT), ".unbounded_shr(129), 0);")]
|
||||
#[doc = concat!("assert_eq!(", stringify!($SelfT), "::MIN.unbounded_shr(129), -1);")]
|
||||
/// ```
|
||||
/// ```
|
||||
#[unstable(feature = "unbounded_shifts", issue = "129375")]
|
||||
#[rustc_allow_const_fn_unstable(unchecked_shifts)]
|
||||
#[must_use = "this returns the result of the operation, \
|
||||
|
@ -1501,7 +1501,7 @@ macro_rules! uint_impl {
|
||||
}
|
||||
}
|
||||
|
||||
/// Unbounded shift left. Computes `self << rhs`, without bounding the value of `rhs`
|
||||
/// Unbounded shift left. Computes `self << rhs`, without bounding the value of `rhs`
|
||||
///
|
||||
/// If `rhs` is larger or equal to the number of bits in `self`,
|
||||
/// the entire value is shifted out, and `0` is returned.
|
||||
@ -1510,6 +1510,7 @@ macro_rules! uint_impl {
|
||||
///
|
||||
/// Basic usage:
|
||||
/// ```
|
||||
/// #![feature(unbounded_shifts)]
|
||||
#[doc = concat!("assert_eq!(0x1", stringify!($SelfT), ".unbounded_shl(4), 0x10);")]
|
||||
#[doc = concat!("assert_eq!(0x1", stringify!($SelfT), ".unbounded_shl(129), 0);")]
|
||||
/// ```
|
||||
@ -1635,6 +1636,7 @@ macro_rules! uint_impl {
|
||||
///
|
||||
/// Basic usage:
|
||||
/// ```
|
||||
/// #![feature(unbounded_shifts)]
|
||||
#[doc = concat!("assert_eq!(0x10", stringify!($SelfT), ".unbounded_shr(4), 0x10);")]
|
||||
#[doc = concat!("assert_eq!(0x10", stringify!($SelfT), ".unbounded_shr(129), 0);")]
|
||||
/// ```
|
||||
|
Loading…
Reference in New Issue
Block a user