about summary refs log tree commit diff
path: root/src/test/ui/await-keyword
AgeCommit message (Collapse)AuthorLines
2019-05-24Move async/await tests to test/ui/async-awaitvarkor-728/+0
2019-05-16Review commentsEsteban Küber-13/+13
- Change wording of suggestion - Move recovery logic to `diagnostics.rs` - Reduce ammount of code duplication
2019-05-16readd match await test caseEsteban Küber-2/+31
2019-05-16Point at enclosing fn/closure when it's not asyncEsteban Küber-25/+47
2019-05-16Simplify span usage for incorrect awaitEsteban Küber-41/+19
2019-05-16Parse alternative incorrect uses of await and recoverEsteban Küber-25/+296
2019-05-07Implement built-in await syntaxTaylor Cramer-59/+269
Adds support for .await under the existing async_await feature gate. Moves macro-like await! syntax to the await_macro feature gate. Removes support for `await` as a non-keyword under the `async_await` feature.
2019-04-18hide `--explain` hint if error has no extended infoAndy Russell-2/+0
2019-03-11Update testsVadim Petrochenkov-6/+6
2018-12-04Update testsOliver Scherer-17/+44
2018-09-24Make "await" a pseudo-edition keywordTaylor Cramer-0/+193
This change makes "await" ident an error in 2018 edition without async_await feature and adds "await" to the 2018 edition keyword lint group that suggest migration on the 2015 edition.