mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-19 10:31:49 +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:
@@ -10,6 +10,8 @@ void main()
|
||||
with(s)
|
||||
{
|
||||
i = 0;
|
||||
f = 3.4;
|
||||
f = 3.5;
|
||||
}
|
||||
assert(s.i == 0);
|
||||
assert(s.f == 3.5);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user