Mercurial > projects > ldc
annotate tests/mini/condexp.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@1 | 1 module condexp; |
lindquist@1 | 2 |
lindquist@1 | 3 int f() |
lindquist@1 | 4 { |
lindquist@1 | 5 return 42; |
lindquist@1 | 6 } |
lindquist@1 | 7 |
lindquist@1 | 8 void main() |
lindquist@1 | 9 { |
lindquist@1 | 10 int i = f() < 25 ? -1 : 1; |
lindquist@1 | 11 /*int j = f() > 25 ? 1 : -1; |
lindquist@1 | 12 assert(i); |
lindquist@1 | 13 assert(!j);*/ |
lindquist@1 | 14 } |