Allow 'continue' statements in 'foreach' loops.

This commit is contained in:
Matt Pharr
2011-12-03 09:31:02 -08:00
parent c3b55de1ad
commit a1c0b4f95a
17 changed files with 359 additions and 40 deletions

View File

@@ -0,0 +1,7 @@
// Can't assign to type "const int32"
int foo() {
foreach (i = 0 ... 10) {
++i;
}
}