annotate run/c/classinfo_01_D.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 415ee28b3d48
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1223
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
1 // $HeadURL$
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
2 // $Date$
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
3 // $Author$
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
4
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
5 // @author@ Frank Benoit <benoit@tionex.de>
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
6 // @date@ 2006-11-08
1320
daef239f37cf sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
thomask
parents: 1223
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=489
1223
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
8 // @desc@ [Issue 489] New: .classinfo not working with fqn
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
9
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
10 module dstress.run.c.classinfo_01_D;
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
11
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
12 class C{
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
13 }
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
14
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
15 C c;
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
16
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
17 int main(){
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
18 c = new C();
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
19 ClassInfo i = dstress.run.c.classinfo_01_D.c.classinfo;
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
20
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
21 if(!i){
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
22 assert(0);
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
23 }
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
24
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
25 return 0;
415ee28b3d48 [Issue 489] New: .classinfo not working with fqn
thomask
parents:
diff changeset
26 }