summaryrefslogtreecommitdiffstats
path: root/tests/library/ambiguous-extern-export-lib1.slang
blob: 17dc0734c0af8ce661496a07549cc40f42bef671 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module "ambiguous-extern-export-lib1.slang";

public extern static const int call_data_len;
public extern static const int[call_data_len] call_group_vector;
public static int[call_data_len] call_id_1 = {};

public void initCallId1()
{
    for (int i = 0; i < call_data_len; i++)
    {
        call_id_1[i] = call_group_vector[i];
    }
}