Mercurial > projects > ldc
annotate tests/mini/bug28.d @ 341:1bb99290e03a trunk
[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author | lindquist |
---|---|
date | Sun, 13 Jul 2008 02:51:19 +0200 |
parents | test/bug28.d@0c77619e803b |
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 } |