diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2018-10-31 11:53:17 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2018-10-31 11:53:50 -0700 |
| commit | d0060d72e5b0f6ff2537808ff090b7fb96c3d10a (patch) | |
| tree | f68b873b1bf64e6987c49c6ffa98e1d08a86f1e9 /src/libcore/ops | |
| parent | de9666f123e800d5fc34210f23127aa6a5d6e4ef (diff) | |
| download | rust-d0060d72e5b0f6ff2537808ff090b7fb96c3d10a.tar.gz rust-d0060d72e5b0f6ff2537808ff090b7fb96c3d10a.zip | |
Bump nightly to 1.32.0
* Also update the bootstrap compiler * Update cargo to 1.32.0 * Clean out stage0 annotations
Diffstat (limited to 'src/libcore/ops')
| -rw-r--r-- | src/libcore/ops/range.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops/range.rs b/src/libcore/ops/range.rs index fd3e50998fe..6cfb1005325 100644 --- a/src/libcore/ops/range.rs +++ b/src/libcore/ops/range.rs @@ -391,7 +391,7 @@ impl<Idx> RangeInclusive<Idx> { /// ``` #[stable(feature = "inclusive_range_methods", since = "1.27.0")] #[inline] - #[cfg_attr(not(stage0), rustc_promotable)] + #[rustc_promotable] pub const fn new(start: Idx, end: Idx) -> Self { Self { start, end, is_empty: None } } |
