summaryrefslogtreecommitdiff
path: root/tests/errors/pep492_badsyntax_async2.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/errors/pep492_badsyntax_async2.pyx')
-rw-r--r--tests/errors/pep492_badsyntax_async2.pyx11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/errors/pep492_badsyntax_async2.pyx b/tests/errors/pep492_badsyntax_async2.pyx
deleted file mode 100644
index 4ea30dba1..000000000
--- a/tests/errors/pep492_badsyntax_async2.pyx
+++ /dev/null
@@ -1,11 +0,0 @@
-# mode: error
-# tag: pep492, async
-
-async def foo():
- def foo(a:await list()):
- pass
-
-_ERRORS = """
-5:14: 'await' not supported here
-5:14: 'await' not supported here
-"""