mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-26 05:41:52 +01:00
[svn r191] Fixed: array literals did not support all type/storage combinations.
Fixed: with expression had broke somewhere along the way.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
module arrays4;
|
||||
import std.stdio;
|
||||
|
||||
void main()
|
||||
{
|
||||
int[] arr;
|
||||
@@ -10,5 +10,4 @@ void main()
|
||||
assert(arr.length == 2);
|
||||
assert(arr[0] == 3);
|
||||
assert(arr[1] == 5);
|
||||
writefln(arr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user