mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
13 lines
164 B
D
13 lines
164 B
D
module tangotests.aa2_1;
|
|
|
|
int main()
|
|
{
|
|
int[cdouble] x;
|
|
cdouble d=22.0+0.0i;
|
|
x[d] = 44;
|
|
if(44 != x[d]){
|
|
assert(0);
|
|
}
|
|
return 0;
|
|
}
|