annotate nocompile/b/break_11_A.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 9337dc166495
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
629
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
1 // $HeadURL$
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
2 // $Date$
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
3 // $Author$
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
4
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
5 // @author@ BCS <BCS_member@pathlink.com>
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
6 // @date@ 2005-08-11
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 629
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=4764
629
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
8 // @desc@ labeled breaks and labeled enclosing scopes
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
9
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
10 // __DSTRESS_ELINE__ 17
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
11
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
12 module dstress.nocompile.b.break_11_A;
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
13
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
14 void main(){
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
15 foo:{
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
16 while(true){
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
17 break foo;
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
18 }
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
19 }
9337dc166495 labeled breaks and labeled enclosing scopes
thomask
parents:
diff changeset
20 }