Skip to content

Commit

Permalink
Rollup merge of rust-lang#63762 - rust-lang:fix-async-date, r=Mark-Si…
Browse files Browse the repository at this point in the history
…mulacrum

`async_await` was stabilized in 1.39.0, not 1.38.0.

r? @Mark-Simulacrum
  • Loading branch information
Centril authored Aug 21, 2019
2 parents e276e06 + 418eb18 commit 0e8a1a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax/feature_gate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -855,7 +855,7 @@ declare_features! (
// Allows `const _: TYPE = VALUE`.
(accepted, underscore_const_names, "1.37.0", Some(54912), None),
// Allows free and inherent `async fn`s, `async` blocks, and `<expr>.await` expressions.
(accepted, async_await, "1.38.0", Some(50547), None),
(accepted, async_await, "1.39.0", Some(50547), None),

// -------------------------------------------------------------------------
// feature-group-end: accepted features
Expand Down

0 comments on commit 0e8a1a4

Please sign in to comment.