mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-03 02:53:13 +01:00
[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
This commit is contained in:
21
tests/mini/complex1.d
Normal file
21
tests/mini/complex1.d
Normal file
@@ -0,0 +1,21 @@
|
||||
module complex1;
|
||||
|
||||
void main()
|
||||
{
|
||||
cfloat cf1 = 3f + 0i;
|
||||
cfloat cf2 = 4f + 1i;
|
||||
cfloat cf3 = func();
|
||||
auto c1 = cf1 + cf2;
|
||||
auto c2 = cf2 - cf3;
|
||||
{
|
||||
auto c3 = cf1 * cf3;
|
||||
{
|
||||
auto c4 = cf2 / cf3;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
cfloat func()
|
||||
{
|
||||
return 3f + 1i;
|
||||
}
|
||||
Reference in New Issue
Block a user