mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 11:31:15 +00:00
Fix missing function body in minicore
This commit is contained in:
parent
805f569adc
commit
563bb6bd6c
@ -977,7 +977,9 @@ pub mod fmt {
|
||||
}
|
||||
|
||||
impl UnsafeArg {
|
||||
pub unsafe fn new() -> Self;
|
||||
pub unsafe fn new() -> Self {
|
||||
UnsafeArg { _private: () }
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1488,7 +1490,6 @@ mod macros {
|
||||
}
|
||||
// endregion:unimplemented
|
||||
|
||||
|
||||
// region:derive
|
||||
pub(crate) mod builtin {
|
||||
#[rustc_builtin_macro]
|
||||
|
Loading…
x
Reference in New Issue
Block a user