Mercurial > projects > ldc
annotate tests/mini/bug28.d @ 1651:cb960b882ca3 tip
bindings were moved to dsource.org/projects/bindings/
author | Moritz Warning <moritzwarning@web.de> |
---|---|
date | Thu, 20 May 2010 20:05:03 +0200 |
parents | 1bb99290e03a |
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 } |