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
when
The following code gets an error about an unused variable b:
b
use std; fn foo(a: int, b: int) { alt a { _ when a == b { log_err "hi"; } _ { log_err "ho"; } } } fn main() { foo(1,1); foo(1,2); }
The text was updated successfully, but these errors were encountered:
d28e0c0
Merge pull request rust-lang#1265 from afonso360/stack_store
4dac65f
Use `stack_store` instead of `stack_addr`+`store` when building structs
Import the asm! macro from core::arch (rust-lang#1265)
d219ad6
Audit for floorf* (rust-lang#1265)
floorf*
94307ed
* Restore `floorf*` intrinsics * Remove negative tests * Tests for `floorf*` * Rename to `result` * Rename fn to `test_towards_neg_inf`
No branches or pull requests
The following code gets an error about an unused variable
b
:The text was updated successfully, but these errors were encountered: