summaryrefslogtreecommitdiff
path: root/tests/errors/e_tuple_args_T692.py
blob: 715433d014e2773f3519d53929b4573136138236 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# ticket: 692
# mode: error

def func((a, b)):
    return a + b

_ERRORS = u"""
4:9: Missing argument name
5:11: undeclared name not builtin: a
5:15: undeclared name not builtin: b
"""