mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
11 lines
172 B
D
11 lines
172 B
D
module arrays3;
|
|
|
|
void main()
|
|
{
|
|
int[] arr;
|
|
{arr = new int[25];}
|
|
{assert(arr.length == 25);}
|
|
{arr.length = arr.length + 5;}
|
|
{assert(arr.length == 30);}
|
|
}
|