Mercurial > projects > ldc
annotate test/bug28.d @ 52:0c77619e803b trunk
[svn r56] Initial support for TypeInfo.
Enums not work.
Several other bugfixes.
author | lindquist |
---|---|
date | Tue, 23 Oct 2007 05:55:12 +0200 |
parents | |
children |
rev | line source |
---|---|
lindquist@52 | 1 module bug28; |
lindquist@52 | 2 |
lindquist@52 | 3 void main() |
lindquist@52 | 4 { |
lindquist@52 | 5 char[] a = "hello"; |
lindquist@52 | 6 char[] b = "hello"; |
lindquist@52 | 7 char[] c = "world"; |
lindquist@52 | 8 char[] d = "somethingelse"; |
lindquist@52 | 9 assert(a == a); |
lindquist@52 | 10 assert(a == b); |
lindquist@52 | 11 assert(a != c); |
lindquist@52 | 12 assert(b != c); |
lindquist@52 | 13 assert(a != d); |
lindquist@52 | 14 assert(b != d); |
lindquist@52 | 15 assert(c != d); |
lindquist@52 | 16 assert(d == d); |
lindquist@52 | 17 } |