Closed
Description
Using the following macro:
#[macro_export]
macro_rules! query_dyn {
($($tt:tt)*) => {
$crate::__query_dynamic!($($tt)*)
};
}
error flagged in rust-analyzer: could not resolve macro $crate::__query_dynamic rust-analyzer(macro-error)
.
Rust compiler compiles that code without any error. cargo check
/cargo clippy
find no errors/warnings.
Latest release version of rust-analyzer (2020-11-30) does not flag this error either.