diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2019-10-02 14:17:38 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2019-10-02 14:17:38 -0400 |
| commit | dce20bf62a37cd8b22858c6f23de62cd36404fa1 (patch) | |
| tree | 7fb243f1a0e33336c965c9f16bb14c2170858762 /src/test/ui/async-await/async-error-span.rs | |
| parent | 81cd596bc57f5a02b8de14c70a2ed2fc31ca3dfd (diff) | |
| download | rust-dce20bf62a37cd8b22858c6f23de62cd36404fa1.tar.gz rust-dce20bf62a37cd8b22858c6f23de62cd36404fa1.zip | |
WIP fix tests
Diffstat (limited to 'src/test/ui/async-await/async-error-span.rs')
| -rw-r--r-- | src/test/ui/async-await/async-error-span.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/async-await/async-error-span.rs b/src/test/ui/async-await/async-error-span.rs index dec3ac0f685..0559e627643 100644 --- a/src/test/ui/async-await/async-error-span.rs +++ b/src/test/ui/async-await/async-error-span.rs @@ -9,7 +9,7 @@ fn get_future() -> impl Future<Output = ()> { } async fn foo() { - let a; //~ ERROR type inside `async` object must be known in this context + let a; //~ ERROR type inside `async` fn body must be known in this context get_future().await; } |
