summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/await-keyword/incorrect-syntax-suggestions.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /src/test/ui/async-await/await-keyword/incorrect-syntax-suggestions.rs
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/async-await/await-keyword/incorrect-syntax-suggestions.rs')
-rw-r--r--src/test/ui/async-await/await-keyword/incorrect-syntax-suggestions.rs132
1 files changed, 0 insertions, 132 deletions
diff --git a/src/test/ui/async-await/await-keyword/incorrect-syntax-suggestions.rs b/src/test/ui/async-await/await-keyword/incorrect-syntax-suggestions.rs
deleted file mode 100644
index 554ac673d..000000000
--- a/src/test/ui/async-await/await-keyword/incorrect-syntax-suggestions.rs
+++ /dev/null
@@ -1,132 +0,0 @@
-// edition:2018
-
-async fn bar() -> Result<(), ()> {
- Ok(())
-}
-
-async fn foo1() -> Result<(), ()> {
- let _ = await bar(); //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo2() -> Result<(), ()> {
- let _ = await? bar(); //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo3() -> Result<(), ()> {
- let _ = await bar()?; //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo21() -> Result<(), ()> {
- let _ = await { bar() }; //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo22() -> Result<(), ()> {
- let _ = await(bar()); //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo23() -> Result<(), ()> {
- let _ = await { bar() }?; //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo4() -> Result<(), ()> {
- let _ = (await bar())?; //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo5() -> Result<(), ()> {
- let _ = bar().await(); //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo6() -> Result<(), ()> {
- let _ = bar().await()?; //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo7() -> Result<(), ()> {
- let _ = bar().await; // OK
- Ok(())
-}
-async fn foo8() -> Result<(), ()> {
- let _ = bar().await?; // OK
- Ok(())
-}
-fn foo9() -> Result<(), ()> {
- let _ = await bar(); //~ ERROR `await` is only allowed inside `async` functions and blocks
- //~^ ERROR incorrect use of `await`
- Ok(())
-}
-fn foo10() -> Result<(), ()> {
- let _ = await? bar(); //~ ERROR `await` is only allowed inside `async` functions and blocks
- //~^ ERROR incorrect use of `await`
- Ok(())
-}
-fn foo11() -> Result<(), ()> {
- let _ = await bar()?; //~ ERROR incorrect use of `await`
- Ok(())
-}
-fn foo12() -> Result<(), ()> {
- let _ = (await bar())?; //~ ERROR `await` is only allowed inside `async` functions and blocks
- //~^ ERROR incorrect use of `await`
- Ok(())
-}
-fn foo13() -> Result<(), ()> {
- let _ = bar().await(); //~ ERROR `await` is only allowed inside `async` functions and blocks
- //~^ ERROR incorrect use of `await`
- Ok(())
-}
-fn foo14() -> Result<(), ()> {
- let _ = bar().await()?; //~ ERROR `await` is only allowed inside `async` functions and blocks
- //~^ ERROR incorrect use of `await`
- Ok(())
-}
-fn foo15() -> Result<(), ()> {
- let _ = bar().await; //~ ERROR `await` is only allowed inside `async` functions and blocks
- Ok(())
-}
-fn foo16() -> Result<(), ()> {
- let _ = bar().await?; //~ ERROR `await` is only allowed inside `async` functions and blocks
- Ok(())
-}
-fn foo24() -> Result<(), ()> {
- fn foo() -> Result<(), ()> {
- let _ = bar().await?; //~ ERROR `await` is only allowed inside `async` functions and blocks
- Ok(())
- }
- foo()
-}
-fn foo25() -> Result<(), ()> {
- let foo = || {
- let _ = bar().await?; //~ ERROR `await` is only allowed inside `async` functions and blocks
- Ok(())
- };
- foo()
-}
-
-async fn foo26() -> Result<(), ()> {
- let _ = await!(bar()); //~ ERROR incorrect use of `await`
- Ok(())
-}
-async fn foo27() -> Result<(), ()> {
- let _ = await!(bar())?; //~ ERROR incorrect use of `await`
- Ok(())
-}
-fn foo28() -> Result<(), ()> {
- fn foo() -> Result<(), ()> {
- let _ = await!(bar())?; //~ ERROR incorrect use of `await`
- //~^ ERROR `await` is only allowed inside `async` functions
- Ok(())
- }
- foo()
-}
-fn foo29() -> Result<(), ()> {
- let foo = || {
- let _ = await!(bar())?; //~ ERROR incorrect use of `await`
- //~^ ERROR `await` is only allowed inside `async` functions
- Ok(())
- };
- foo()
-}
-
-fn main() {
- match await { await => () }
- //~^ ERROR expected expression, found `=>`
- //~| ERROR incorrect use of `await`
-} //~ ERROR expected one of `.`, `?`, `{`, or an operator, found `}`