We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7de63be commit 1aa032fCopy full SHA for 1aa032f
library/core/src/ptr/mod.rs
@@ -876,7 +876,7 @@ pub const unsafe fn write<T>(dst: *mut T, src: T) {
876
// We are calling the intrinsics directly to avoid function calls in the generated code
877
// as `intrinsics::copy_nonoverlapping` is a wrapper function.
878
extern "rust-intrinsic" {
879
- #[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "none")]
+ #[rustc_const_unstable(feature = "const_intrinsic_copy", issue = "80697")]
880
fn copy_nonoverlapping<T>(src: *const T, dst: *mut T, count: usize);
881
}
882
0 commit comments