annotate run/constructor_04.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents 52c9e86b6486
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 88
diff changeset
1 // $HeadURL$
a33ad7189d21 1) news:// -> news:
thomask
parents: 88
diff changeset
2 // $Date$
a33ad7189d21 1) news:// -> news:
thomask
parents: 88
diff changeset
3 // $Author$
a33ad7189d21 1) news:// -> news:
thomask
parents: 88
diff changeset
4
87
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
5 // @author@ shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp>
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
6 // @date@ 2004-11-01
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 88
diff changeset
7 // @uri@ news:20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp
1383
52c9e86b6486 @url@ -> @uri@
thomask
parents: 218
diff changeset
8 // @uri@ nntp://digitalmars.com/D.gnu/829
87
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
9
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
10 // see also dstress.addon.constructor_04_A
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
11
218
cb22f2d42678 circumvent import bug
thomask
parents: 140
diff changeset
12 // __DSTRESS_DFLAGS__ addon/constructor_04_A.d
87
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
13
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
14 module dstress.run.constructor_04;
218
cb22f2d42678 circumvent import bug
thomask
parents: 140
diff changeset
15 import addon.constructor_04_A;
87
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
16
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
17 int main(){
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
18 Derived c = new Derived();
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
19 return 0;
dfbc0188e5aa shinichiro.h <s31552@mail.ecc.u-tokyo.ac.jp> news://20041101173804.4e16f816.s31552@mail.ecc.u-tokyo.ac.jp nttp://digitalmars.com/D.gnu:829
thomask
parents:
diff changeset
20 }