aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/parser/expr_member.good
blob: 7a1aca93ee03a4e84000f4776d3d19b1f48deb29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20


typedef A = (
    ((E e) d) b,
    int c,
);

typedef E = (
    int f,
    int g,
);

var A a;

() f() {
    int x = a.b.d.e.f;
    a.b.d.e.f = 1;
}