mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 13:25:09 +00:00
Fix missing function body in minicore
This commit is contained in:
parent
805f569adc
commit
563bb6bd6c
1 changed files with 3 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue