aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python/match_case.py
blob: 88b56af10f5f444f7b7491133c3322414809a9dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
a = 0

def test_match_case():
    match a:
        case 1:
            return


def test_match():
    match a:


def test_case():
    match a:
        case b: