Fix missing function body in minicore
This commit is contained in:
parent
a8e50cffbc
commit
b6751b7611
@ -977,7 +977,9 @@ pub struct UnsafeArg {
|
||||
}
|
||||
|
||||
impl UnsafeArg {
|
||||
pub unsafe fn new() -> Self;
|
||||
pub unsafe fn new() -> Self {
|
||||
UnsafeArg { _private: () }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1488,7 +1490,6 @@ macro_rules! unimplemented {
|
||||
}
|
||||
// endregion:unimplemented
|
||||
|
||||
|
||||
// region:derive
|
||||
pub(crate) mod builtin {
|
||||
#[rustc_builtin_macro]
|
||||
|
Loading…
Reference in New Issue
Block a user