Skip to content

Commit 77edb32

Browse files
committed
Reexport for bootstrap
1 parent 56c6372 commit 77edb32

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

library/core/src/marker.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1131,3 +1131,6 @@ pub trait FnPtr: Copy + Clone {
11311131
#[lang = "fn_ptr_addr"]
11321132
fn addr(self) -> *const ();
11331133
}
1134+
1135+
#[unstable(feature = "derive_coerce_pointee", issue = "123430")]
1136+
pub use crate::ops::CoercePointee;

src/tools/miri/src/shims/files.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::any::Any;
22
use std::collections::BTreeMap;
33
use std::fs::{File, Metadata};
44
use std::io::{ErrorKind, IsTerminal, Seek, SeekFrom, Write};
5-
use std::ops::CoercePointee;
5+
use std::marker::CoercePointee;
66
use std::ops::Deref;
77
use std::rc::{Rc, Weak};
88
use std::{fs, io};

0 commit comments

Comments
 (0)