Skip to content

Commit 652008e

Browse files
committed
More precise wording around temporaries
1 parent 04d606d commit 652008e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/expressions/block-expr.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ Here the resulting future will be `Send` if `Bar` is send, since `x` is defined
111111

112112
Note that for values of types that implement `Drop`, there is an implicit use of the value at the end of its lifetime in order to run the destructor.
113113

114-
Besides named variables, temporary values also count. For example in `foo(&bar, baz.await)`, the value `&bar` is considered live across the `await` point. This is also true of the scrutinee of the match expression, since [the scrutinee is live for the entire match block].
114+
Besides named variables, temporary values also affect auto trait inference.
115+
For example in `foo(&bar, baz.await)`, the value `&bar` is considered live across the `await` point.
116+
This is also true of the scrutinee of the match expression, since [the scrutinee is live for the entire match block].
115117

116118
### Async context
117119

0 commit comments

Comments
 (0)