comparison test/goto1.d @ 37:77cdca8c210f trunk

[svn r41] new'd dynamic arrays are now initialized with the element type's default initializer. initial label/goto support.
author lindquist
date Wed, 10 Oct 2007 03:38:24 +0200
parents
children
comparison
equal deleted inserted replaced
36:c0967c4b2a74 37:77cdca8c210f
1 module goto1;
2
3 void main()
4 {
5 int i;
6 goto lbl;
7 i++;
8 lbl:
9 assert(i == 0);
10 }
11