annotate run/opCast_02.d @ 1487:6e4063f99377

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 12:29:15 +0000
parents 52c9e86b6486
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 70
diff changeset
1 // $HeadURL$
a33ad7189d21 1) news:// -> news:
thomask
parents: 70
diff changeset
2 // $Date$
a33ad7189d21 1) news:// -> news:
thomask
parents: 70
diff changeset
3 // $Author$
a33ad7189d21 1) news:// -> news:
thomask
parents: 70
diff changeset
4
70
5f98d4a33d49 1) review of all test cases with unexpected results (except encoding and html/xml)
thomask
parents: 18
diff changeset
5 // @author@ Carlos Santander B. <carlos8294@msn.com>
5f98d4a33d49 1) review of all test cases with unexpected results (except encoding and html/xml)
thomask
parents: 18
diff changeset
6 // @date@ 2004-09-18
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 70
diff changeset
7 // @uri@ news:cihrpp$9gt$1@digitaldeamon.com
1487
6e4063f99377 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=1865
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
9
70
5f98d4a33d49 1) review of all test cases with unexpected results (except encoding and html/xml)
thomask
parents: 18
diff changeset
10 module dstress.run.opCast_02;
5f98d4a33d49 1) review of all test cases with unexpected results (except encoding and html/xml)
thomask
parents: 18
diff changeset
11
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
12
3269e4627918 init dstress
svnowner
parents:
diff changeset
13 class Parent{
3269e4627918 init dstress
svnowner
parents:
diff changeset
14 void test(int i){
3269e4627918 init dstress
svnowner
parents:
diff changeset
15 }
3269e4627918 init dstress
svnowner
parents:
diff changeset
16
3269e4627918 init dstress
svnowner
parents:
diff changeset
17 int opCast(){
3269e4627918 init dstress
svnowner
parents:
diff changeset
18 return 0;
3269e4627918 init dstress
svnowner
parents:
diff changeset
19 }
3269e4627918 init dstress
svnowner
parents:
diff changeset
20 }
3269e4627918 init dstress
svnowner
parents:
diff changeset
21
3269e4627918 init dstress
svnowner
parents:
diff changeset
22 class Child : Parent{
3269e4627918 init dstress
svnowner
parents:
diff changeset
23 }
3269e4627918 init dstress
svnowner
parents:
diff changeset
24
3269e4627918 init dstress
svnowner
parents:
diff changeset
25 int main(){
18
33a25c1e1cfc various corrections/by-passes of known problems
thomask
parents: 1
diff changeset
26 (new Child()).test=2;
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
27 return 0;
3269e4627918 init dstress
svnowner
parents:
diff changeset
28 }