From 123f129f795a5f55a0094263f72d56249656145e Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 17 Sep 2019 04:50:40 -0400 Subject: [PATCH] apply nits from centril Co-Authored-By: Mazdak Farrokhzad --- ...rop-order-for-temporary-in-tail-return-expr.rs | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/test/ui/async-await/drop-order/drop-order-for-temporary-in-tail-return-expr.rs b/src/test/ui/async-await/drop-order/drop-order-for-temporary-in-tail-return-expr.rs index e250506cdf0..e40acff6dc1 100644 --- a/src/test/ui/async-await/drop-order/drop-order-for-temporary-in-tail-return-expr.rs +++ b/src/test/ui/async-await/drop-order/drop-order-for-temporary-in-tail-return-expr.rs @@ -4,9 +4,10 @@ #![allow(unused_variables)] -// Test that the drop order for parameters in a fn and async fn matches up. Also test that -// parameters (used or unused) are not dropped until the async fn completes execution. -// See also #54716. +// Test the drop order for parameters relative to local variables and +// temporaries created in the tail return expression of the function +// body. In particular, check that this drop order is the same between +// a `async fn` and an ordinary `fn`. See #64512. extern crate arc_wake; @@ -39,13 +40,13 @@ fn drop(&mut self) { } } -/// Check drop order of temporary "temp" as compared to x, y, and z. +/// Check drop order of temporary "temp" as compared to `x`, `y`, and `z`. /// /// Expected order: -/// - z +/// - `z` /// - temp -/// - y -/// - x +/// - `y` +/// - `x` async fn foo_async(x: D, _y: D) { let l = x.1.clone(); let z = D("z", l.clone()); -- 2.44.0