aboutsummaryrefslogtreecommitdiff
path: root/compiler/tests/modules/import_nested.good
blob: 508ac87cb8f5d72993377f675f242661f7adb316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

uses thing_a;
uses thing_a as renamed_a;

int f() {
    thing_a x1;
    renamed_a x2;
    
    int i = x1.y.z;
    int j = x2.yy.zz;
    return i + x2.y.z + x1.yy.zz;
}