We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This causes E283 :
let v = Vec2::<f32>::zero(); // Or whatever value, the point is to have a Vec2<f32> let v = Vec3::from(v); // Fails to infer Vec3<f32>
Today, the solution would be...
let v = Vec2::<f32>::zero(); let v = Vec3::<f32>::from(v);
... but it's annoying. There's something that messes with the compiler's ability to properly infer types. it might be just me though.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This causes E283 :
Today, the solution would be...
... but it's annoying. There's something that messes with the compiler's ability to properly infer types.
it might be just me though.
The text was updated successfully, but these errors were encountered: