annotate run/s/scope_13_B.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents 7f312e8ff5b6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1050
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
1 // $HeadURL$
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
2 // $Date$
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
3 // $Author$
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
4
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
5 // @author@ <ericanderton@yahoo.com>
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
6 // @date@ 2006-06-16
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1050
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=199
1050
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
8
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
9 module dstress.run.s.scope_13_B;
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
10
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
11 int main(){
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
12 int i;
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
13
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
14 label:
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
15 {
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
16 }
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
17
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
18 {
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
19 scope(exit) i++;
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
20 i=3;
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
21 }
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
22
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
23 if(i != 4){
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
24 assert(0);
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
25 }
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
26
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
27
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
28 return 0;
7f312e8ff5b6 <ericanderton@yahoo.com>
thomask
parents:
diff changeset
29 }