diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-08-21 00:23:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-21 00:23:08 +0200 |
| commit | 418eb181ca5777fb06e29a2acf37a5c641340538 (patch) | |
| tree | 7df54b8f08044dbf471465a82c485a80d617ac00 | |
| parent | bea0372a1a7a31b81f28cc4d9a83a2dc9a79d008 (diff) | |
| download | rust-fix-async-date.tar.gz | |
async_await was stabilized in 1.39.0, not 1.38.0.fix-async-date
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index bce0b07db1c..f7aaf5cd22a 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -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 |
