Mercurial > projects > ldc
annotate test/switch1.d @ 14:0e86428ee567 trunk
[svn r18] * Initial support for switch statements - No string switches yet.
* Moved Statement::toIR definitions into gen/statements.c - toir.c is still too big.
* Removed some BB bloat with ScopeStatements.
author | lindquist |
---|---|
date | Wed, 03 Oct 2007 02:15:12 +0200 |
parents | |
children |
rev | line source |
---|---|
lindquist@14 | 1 module switch1; |
lindquist@14 | 2 |
lindquist@14 | 3 void main() |
lindquist@14 | 4 { |
lindquist@14 | 5 int i = 2; |
lindquist@14 | 6 int r; |
lindquist@14 | 7 switch (i) |
lindquist@14 | 8 { |
lindquist@14 | 9 case 1: r+=1; break; |
lindquist@14 | 10 case 2: r-=2; |
lindquist@14 | 11 case 3: r=3; break; |
lindquist@14 | 12 default: r=-1; |
lindquist@14 | 13 } |
lindquist@14 | 14 assert(r == 3); |
lindquist@14 | 15 } |