You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having this same issue where the rustc can correctly expand the macro with negative integers and floats, but RA cannot. I use extensively this macro, so I am getting red squiggles everywhere
macro:
sqlite_values!(-1)
RA
// Recursive expansion of sqlite_values! macro// ============================================
<[_]>::into_vec(#[rustc_box]
alloc::boxed::Box::new([(<[_]>::into_vec(#[rustc_box]
alloc::boxed::Box::new([(::rusqlite::types::Value::Integer())]),))]),)
Uh oh!
There was an error while loading. Please reload this page.
This code compiles fine with rustc, but rust analyzer reports error:
unexpected token
rust-analyzer version: 1.87.0-nightly (be73c1f 2025-03-21)
rustc version: rustc 1.87.0-nightly (be73c1f46 2025-03-21)
The text was updated successfully, but these errors were encountered: