about summary refs log tree commit diff
path: root/src/test/run-pass/issue-55809.rs
AgeCommit message (Collapse)AuthorLines
2019-05-24Move async/await tests to test/ui/async-awaitvarkor-30/+0
2019-05-07Implement built-in await syntaxTaylor Cramer-5/+5
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-23Stabilize futures_apiTaylor Cramer-1/+1
2019-03-13Add test for #55809.David Wood-0/+30
This commit adds a regression test for #55809 which checks that a overflow does not occur when evaluating a requirement for async functions and `&mut` arguments in some specific circumstances.