summaryrefslogtreecommitdiff
path: root/pyflakes/test/test_other.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyflakes/test/test_other.py')
-rw-r--r--pyflakes/test/test_other.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/pyflakes/test/test_other.py b/pyflakes/test/test_other.py
index 0ac96a3..ae6cea2 100644
--- a/pyflakes/test/test_other.py
+++ b/pyflakes/test/test_other.py
@@ -1736,3 +1736,10 @@ class TestAsyncStatements(TestCase):
...
await trans.end()
''')
+
+ @skipIf(version_info < (3, 5), 'new in Python 3.5')
+ def test_matmul(self):
+ self.flakes('''
+ def foo(a, b):
+ return a @ b
+ ''')