annotate nocompile/scope_02.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents b8c0195059d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
471
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
1 // $HeadURL$
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
2 // $Date$
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
3 // $Author$
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
4
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
5 // @author@ Manfred Nowak <svv1999@hotmail.com>
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
6 // @date@ 2005-04-22
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 471
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3773
471
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
8
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
9 // __DSTRESS_ELINE__ 19
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
10
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
11 module dstress.nocompile.scope_02;
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
12
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
13 class C{
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
14 void f(){
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
15 }
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
16
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
17 struct S{
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
18 void bug(){
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
19 f();
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
20 }
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
21 }
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
22 }
39eb3d2a70ed scope visibility
thomask
parents:
diff changeset
23