summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/in-trait/bad-signatures.next.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/in-trait/bad-signatures.next.stderr')
-rw-r--r--tests/ui/async-await/in-trait/bad-signatures.next.stderr17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/ui/async-await/in-trait/bad-signatures.next.stderr b/tests/ui/async-await/in-trait/bad-signatures.next.stderr
deleted file mode 100644
index ae590fb05..000000000
--- a/tests/ui/async-await/in-trait/bad-signatures.next.stderr
+++ /dev/null
@@ -1,17 +0,0 @@
-error: expected identifier, found keyword `self`
- --> $DIR/bad-signatures.rs:8:23
- |
-LL | async fn bar(&abc self);
- | ^^^^ expected identifier, found keyword
-
-error: expected one of `:`, `@`, or `|`, found keyword `self`
- --> $DIR/bad-signatures.rs:8:23
- |
-LL | async fn bar(&abc self);
- | -----^^^^
- | | |
- | | expected one of `:`, `@`, or `|`
- | help: declare the type after the parameter binding: `<identifier>: <type>`
-
-error: aborting due to 2 previous errors
-