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
The following:
pub fn testing(x: i32) { let _3 = 1; testing(x); }
produces (approx):
module Test_Testing use prelude.Int32 use prelude.Int let rec cfg testing (x : int32) : () = var _0 : (); var x : int32 = x; var _3 : (); { goto BB0 } BB0 { _3 <- ( (1 : int32)); _3 <- ( testing ( x)); goto BB1 } BB1 { _0 <- ( ()); return _0 } end
The variable _3 is shadowed by a temporary.
_3
The text was updated successfully, but these errors were encountered:
I didn't even know you could have that kind of variable in rust
Sorry, something went wrong.
Moving this to issue #1239
No branches or pull requests
The following:
produces (approx):
The variable
_3
is shadowed by a temporary.The text was updated successfully, but these errors were encountered: