about summary refs log tree commit diff
path: root/tests/ui/async-await/async-fn/method-call-pos.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-01-26 17:00:34 +0000
committerMichael Goulet <michael@errs.io>2024-01-31 16:59:19 +0000
commitcd2fd34ca68f701ade233a980093ee4444f7da3a (patch)
tree5a05b9c584df6a0b6eb284f1d4a6807ead9bdc34 /tests/ui/async-await/async-fn/method-call-pos.rs
parent0eb2adb7e877ceaa7d4919f7b881508ee507ec3b (diff)
downloadrust-cd2fd34ca68f701ade233a980093ee4444f7da3a.tar.gz
rust-cd2fd34ca68f701ade233a980093ee4444f7da3a.zip
Add tests
Diffstat (limited to 'tests/ui/async-await/async-fn/method-call-pos.rs')
-rw-r--r--tests/ui/async-await/async-fn/method-call-pos.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/ui/async-await/async-fn/method-call-pos.rs b/tests/ui/async-await/async-fn/method-call-pos.rs
new file mode 100644
index 00000000000..aaa0245b986
--- /dev/null
+++ b/tests/ui/async-await/async-fn/method-call-pos.rs
@@ -0,0 +1,7 @@
+// edition:2018
+
+fn main() {
+    <_ as async Fn()>(|| async {});
+    //~^ ERROR expected identifier, found keyword `async`
+    //~| ERROR expected one of
+}