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
When writing code with the nalgebra crate, which as lots of type definitions, rust analyzer seems to get mixed up and starts giving mismatched-arg-count for almost all types.
When writing code with the nalgebra crate, which as lots of type definitions, rust analyzer seems to get mixed up and starts giving mismatched-arg-count for almost all types.
Simple reproducible example.
`
use nalgebra::Vector2;
pub(crate) fn test_vectors() -> Vector2 {
let my_vector = Vector2::new(2.0, 2.0);
my_vector
}
#[test]
fn test() {
let v = test_vectors();
assert_eq!(v, Vector2::new(2.0, 2.0));
}
`
The text was updated successfully, but these errors were encountered: