summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/issue-101715.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/async-await/issue-101715.rs')
-rw-r--r--src/test/ui/async-await/issue-101715.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/ui/async-await/issue-101715.rs b/src/test/ui/async-await/issue-101715.rs
deleted file mode 100644
index 1be5d0248..000000000
--- a/src/test/ui/async-await/issue-101715.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// edition:2018
-
-struct S;
-
-impl S {
- fn very_long_method_name_the_longest_method_name_in_the_whole_universe(self) {}
-}
-
-async fn foo() {
- S.very_long_method_name_the_longest_method_name_in_the_whole_universe()
- .await
- //~^ error: `()` is not a future
- //~| help: remove the `.await`
- //~| help: the trait `Future` is not implemented for `()`
-}
-
-fn main() {}