diff options
Diffstat (limited to 'tests/feature_check/async_check.py')
-rw-r--r-- | tests/feature_check/async_check.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/feature_check/async_check.py b/tests/feature_check/async_check.py new file mode 100644 index 0000000000..0f6361cd12 --- /dev/null +++ b/tests/feature_check/async_check.py @@ -0,0 +1,3 @@ +# check if async/await keywords are supported +async def foo(): + await 1 |