mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-08-03 04:50:05 +02: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:
11
tests/mini/arrays5.d
Normal file
11
tests/mini/arrays5.d
Normal file
@@ -0,0 +1,11 @@
|
||||
module arrays5;
|
||||
void main()
|
||||
{
|
||||
auto arr = new float[5];
|
||||
{arr[4] = 1f;}
|
||||
{assert(arr[0] !<>= 0f);}
|
||||
{assert(arr[1] !<>= 0f);}
|
||||
{assert(arr[2] !<>= 0f);}
|
||||
{assert(arr[3] !<>= 0f);}
|
||||
{assert(arr[4] == 1f);}
|
||||
}
|
||||
Reference in New Issue
Block a user