mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-03-01 01:53:16 +01:00
[svn r44] Lots of bug fixes.
New array literal support New array ~= operator support (for single element) New with statement support More...
This commit is contained in:
10
test/scope3.d
Normal file
10
test/scope3.d
Normal file
@@ -0,0 +1,10 @@
|
||||
module scope3;
|
||||
|
||||
void main()
|
||||
{
|
||||
int i;
|
||||
while (i < 10) {
|
||||
scope(success) i++;
|
||||
}
|
||||
printf("%d\n", i);
|
||||
}
|
||||
Reference in New Issue
Block a user