]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/async-await/drop-order/drop-order-for-async-fn-parameters.rs
Rollup merge of #62257 - RalfJung:miri-c-str, r=estebank
[rust.git] / src / test / ui / async-await / drop-order / drop-order-for-async-fn-parameters.rs
index 708c570498460147de3cac9a1f6a884452d7966b..2a74485afb45094803b030dcdde26ebacbe37c17 100644 (file)
@@ -3,7 +3,7 @@
 // run-pass
 
 #![allow(unused_variables)]
-#![feature(async_await, await_macro)]
+#![feature(async_await)]
 
 // 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.