Skip to content

Commit 40947c6

Browse files
[ci] Roll pinned stable toolchain (#1937)
Co-authored-by: Joshua Liebow-Feeser <joshlf@users.noreply.github.com>
1 parent 44ccf6e commit 40947c6

5 files changed

+5
-5
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ zerocopy-panic-in-const-and-vec-try-reserve = "1.57.0"
5555

5656
[package.metadata.ci]
5757
# The versions of the stable and nightly compiler toolchains to use in CI.
58-
pinned-stable = "1.81.0"
58+
pinned-stable = "1.82.0"
5959
pinned-nightly = "nightly-2024-10-17"
6060

6161
[package.metadata.docs.rs]

tests/ui-stable/transmute-mut-dst-unsized.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ error[E0277]: the size for values of type `[u8]` cannot be known at compilation
4747
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
4848
|
4949
= help: the trait `Sized` is not implemented for `[u8]`
50-
note: required by an implicit `Sized` bound in `transmute`
50+
note: required by an implicit `Sized` bound in `std::intrinsics::transmute`
5151
--> $RUST/core/src/intrinsics.rs
5252
|
5353
| pub fn transmute<Src, Dst>(src: Src) -> Dst;

tests/ui-stable/transmute-mut-src-dst-unsized.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ error[E0277]: the size for values of type `[u8]` cannot be known at compilation
144144
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
145145
|
146146
= help: the trait `Sized` is not implemented for `[u8]`
147-
note: required by an implicit `Sized` bound in `transmute`
147+
note: required by an implicit `Sized` bound in `std::intrinsics::transmute`
148148
--> $RUST/core/src/intrinsics.rs
149149
|
150150
| pub fn transmute<Src, Dst>(src: Src) -> Dst;

tests/ui-stable/transmute-ref-dst-unsized.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ error[E0277]: the size for values of type `[u8]` cannot be known at compilation
4747
| ^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
4848
|
4949
= help: the trait `Sized` is not implemented for `[u8]`
50-
note: required by an implicit `Sized` bound in `transmute`
50+
note: required by an implicit `Sized` bound in `std::intrinsics::transmute`
5151
--> $RUST/core/src/intrinsics.rs
5252
|
5353
| pub fn transmute<Src, Dst>(src: Src) -> Dst;

tests/ui-stable/transmute-ref-src-dst-unsized.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ error[E0277]: the size for values of type `[u8]` cannot be known at compilation
144144
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
145145
|
146146
= help: the trait `Sized` is not implemented for `[u8]`
147-
note: required by an implicit `Sized` bound in `transmute`
147+
note: required by an implicit `Sized` bound in `std::intrinsics::transmute`
148148
--> $RUST/core/src/intrinsics.rs
149149
|
150150
| pub fn transmute<Src, Dst>(src: Src) -> Dst;

0 commit comments

Comments
 (0)