aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/ident_duplicate.good
blob: 044f55d023d826858011200678968f98cbdce0d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13


() func() {
    int i;
    {
        int i;
        int j;
        if :true {
            int i;
            int j;
        }
    }
}