annotate nocompile/abstract_05.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents 774e02c900da
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
221
62221b7d401e abstract constructor
thomask
parents:
diff changeset
1 // $HeadURL$
62221b7d401e abstract constructor
thomask
parents:
diff changeset
2 // $Date$
62221b7d401e abstract constructor
thomask
parents:
diff changeset
3 // $Author$
62221b7d401e abstract constructor
thomask
parents:
diff changeset
4
62221b7d401e abstract constructor
thomask
parents:
diff changeset
5 // @author@ Jarrett Billingsley <kb3ctd2@yahoo.com>
62221b7d401e abstract constructor
thomask
parents:
diff changeset
6 // @date@ 2004-12-29
62221b7d401e abstract constructor
thomask
parents:
diff changeset
7 // @uri@ news:cqvnro$26ul$1@digitaldaemon.com
1485
774e02c900da changed nntp: URLs to http: URLs
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2624
221
62221b7d401e abstract constructor
thomask
parents:
diff changeset
9
756
9a121126b077 major "Torture" review
thomask
parents: 338
diff changeset
10 // __DSTRESS_ELINE__ 15
338
1f6cf5ccfbc9 1) updated rules to dmd-0.119
thomask
parents: 221
diff changeset
11
221
62221b7d401e abstract constructor
thomask
parents:
diff changeset
12 module dstress.nocompile.abstract_05;
62221b7d401e abstract constructor
thomask
parents:
diff changeset
13
62221b7d401e abstract constructor
thomask
parents:
diff changeset
14 class Base{
62221b7d401e abstract constructor
thomask
parents:
diff changeset
15 abstract this();
62221b7d401e abstract constructor
thomask
parents:
diff changeset
16 }
62221b7d401e abstract constructor
thomask
parents:
diff changeset
17
62221b7d401e abstract constructor
thomask
parents:
diff changeset
18 int main(){
62221b7d401e abstract constructor
thomask
parents:
diff changeset
19 Base b=new Base();
62221b7d401e abstract constructor
thomask
parents:
diff changeset
20 return 0;
62221b7d401e abstract constructor
thomask
parents:
diff changeset
21 }