Open porky11 opened 1 month ago
This is documented, so at the very least changing this will be a breaking change.
@rustbot label -C-bug +C-discussion
I think, I get it. It's about this note:
Temporaries that are created in the final expression of a function body are dropped after any named variables bound in the function body. Their drop scope is the entire function, as there is no smaller enclosing temporary scope.
But I'm not sure if this explains why return
is handled differently (f3
, f4
).
I assume it's because if there is a semicolon at the end, then the final expression is implicitly ()
, but if there isn't one, the return statement is considered as the final expression (isn't return
a statement and not an expression?).
I assume it's because if there is a semicolon at the end, then the final expression is implicitly
()
, but if there isn't one, the return statement is considered as the final expression
Yes.
isn't
return
a statement and not an expression
No. The only statement Rust has is let
.
I guess, this issue can be closed then, and cargo fmt
should not add a semicolon behind retun
if it's the last expression, but either do nothing or remove the return
.
There are a bunch of (rare) cases where rustfmt can change the meaning of a program. I do not think that means it should not add a semicolon, but removing the return
is a possibility.
A fix is being proposed for stabilization in Rust 2024. Adding #![feature(shorter_tail_lifetimes)]
to the reproducer (playground) produces consistent results in all cases:
===== f1 =====
dropping drop initialized second
dropping drop initialized first
===== f2 =====
dropping drop initialized second
dropping drop initialized first
===== f3 =====
dropping drop initialized second
dropping drop initialized first
===== f4 =====
dropping drop initialized second
dropping drop initialized first
===== f5 =====
dropping drop initialized second
dropping drop initialized first
I tried this code:
I expected to see this happen: All these functions should do exactly the same. The parameters would be dropped in opposite initialization order. To my understanding of Rust, implicitly and explicitly returning the last argument should do the same. Also the semicolon after a
return
shouldn't make a difference. And binding the result of something to a variable and then returning it, should also do the same.Instead, this happened:
f1
andf3
drop parameters in initialization order whilef2
,f4
andf5
drop parameters in opposite initialization order. It's especially weird that the semicolon after the return has any effect.cargo fmt
will add semicolons afterreturn
. So if this is intentional, there's a bug incargo fmt
. Formatting should never do a semantic change. So when reproducing this bug, be sure to turn off automatic formatting if you have it enabled.I also had some discussion with somebody on Reddit. It seems to be necessary for lifetimes of temporary values to work correctly.
But I still think, this is confusing. So at least the
return
case should be fixed. The compiler could just implicitly add a semicolon after the return.And for implicit return values, even if it's just the implicit return value of a subscope, the
let
transformation (like inf5
) should fix the issue. And since it's possible to generally fiix this with code, I'm sure this can also be fixed in the compiler.Meta
rustc --version --verbose
:(no backtrace available, since it doesn't crash)