about summary refs log tree commit diff
path: root/src/test/rustdoc/async-fn.rs
AgeCommit message (Collapse)AuthorLines
2020-12-26update testsBastian Kauschke-2/+0
2020-12-23Add more testsJoshua Nelson-0/+15
2020-12-22Fix elided lifetimes shown as `'_` on async functionsJoshua Nelson-0/+29
2020-11-12Handle and test wildcard argumentsJoshua Nelson-0/+6
2020-11-12Don't reuse bindings for `ref mut`Joshua Nelson-0/+8
Reusing bindings causes errors later in lowering: ``` error[E0596]: cannot borrow `vec` as mutable, as it is not declared as mutable --> /checkout/src/test/ui/async-await/argument-patterns.rs:12:20 | LL | async fn b(n: u32, ref mut vec: A) { | ^^^^^^^^^^^ | | | cannot borrow as mutable | help: consider changing this to be mutable: `mut vec` ```
2020-01-20rustdoc: Correct order of `async` and `unsafe` in `async unsafe fn`sOliver Middleton-0/+7
2019-08-20Remove async_await gates from tests.Mazdak Farrokhzad-2/+0
2019-04-23Stabilize futures_apiTaylor Cramer-1/+1
2019-02-06display sugared return types for async functionsAndy Russell-7/+28
2018-12-25Remove licensesMark Rousskov-10/+0
2018-08-16syntax: also warn about edition "umbrella" features being implied by --edition.Eduard-Mihai Burtescu-1/+1
2018-08-09set the syntax edition in the driver's phase 1QuietMisdreavus-0/+24