mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +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 {
|
impl UnsafeArg {
|
||||||
pub unsafe fn new() -> Self;
|
pub unsafe fn new() -> Self {
|
||||||
|
UnsafeArg { _private: () }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1488,7 +1490,6 @@ mod macros {
|
||||||
}
|
}
|
||||||
// endregion:unimplemented
|
// endregion:unimplemented
|
||||||
|
|
||||||
|
|
||||||
// region:derive
|
// region:derive
|
||||||
pub(crate) mod builtin {
|
pub(crate) mod builtin {
|
||||||
#[rustc_builtin_macro]
|
#[rustc_builtin_macro]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue