mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-23 20:41: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:
@@ -1,8 +1,10 @@
|
||||
module arrays13;
|
||||
|
||||
extern(C) int printf(char*, ...);
|
||||
|
||||
void main()
|
||||
{
|
||||
string a = "hello";
|
||||
char[] a = "hello";
|
||||
|
||||
assert(a > "hel");
|
||||
assert(a >= "hel");
|
||||
|
||||
Reference in New Issue
Block a user