summaryrefslogtreecommitdiff
path: root/tests/functional/n/named_expr_without_context_py38.py
blob: ee45b84b35401087a147e769536ebfb2767debf3 (plain)
1
2
3
4
5
6
# pylint: disable=missing-docstring

if (a := 2):
    pass

(b := 1)  # [named-expr-without-context]