mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 13:25:09 +00:00
Fix name resolution of shadowed builtin macro
This commit is contained in:
parent
8db40df2a3
commit
1cd707e693
3 changed files with 33 additions and 1 deletions
|
@ -63,6 +63,7 @@
|
|||
//! unsize: sized
|
||||
//! todo: panic
|
||||
//! unimplemented: panic
|
||||
//! column:
|
||||
|
||||
#![rustc_coherence_is_core]
|
||||
|
||||
|
@ -1617,6 +1618,14 @@ pub mod error {
|
|||
}
|
||||
// endregion:error
|
||||
|
||||
// region:column
|
||||
#[rustc_builtin_macro]
|
||||
#[macro_export]
|
||||
macro_rules! column {
|
||||
() => {};
|
||||
}
|
||||
// endregion:column
|
||||
|
||||
pub mod prelude {
|
||||
pub mod v1 {
|
||||
pub use crate::{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue