annotate nocompile/cast_03.d @ 1630:d0efa3ae5522 default tip

run/mini/naked_asm5: New x86_64 ABI passes the arguments in reverse order.
author David Nadlinger <code@klickverbot.at>
date Sat, 23 Apr 2011 22:57:32 +0200
parents b8c0195059d9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
140
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
1 // $HeadURL$
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
2 // $Date$
a33ad7189d21 1) news:// -> news:
thomask
parents: 1
diff changeset
3 // $Author$
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
4
3269e4627918 init dstress
svnowner
parents:
diff changeset
5 // @author@ Walter <newshound@digitalmars.com>
3269e4627918 init dstress
svnowner
parents:
diff changeset
6 // @date@ 2004-08-16
1489
b8c0195059d9 changed nntp: URLs to http: URLs
thomask
parents: 338
diff changeset
7 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=1376
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
8
338
1f6cf5ccfbc9 1) updated rules to dmd-0.119
thomask
parents: 140
diff changeset
9 // __DSTRESS_ELINE__ 27
1f6cf5ccfbc9 1) updated rules to dmd-0.119
thomask
parents: 140
diff changeset
10
1f6cf5ccfbc9 1) updated rules to dmd-0.119
thomask
parents: 140
diff changeset
11 module dstress.nocompile.cast_03;
0
3269e4627918 init dstress
svnowner
parents:
diff changeset
12
3269e4627918 init dstress
svnowner
parents:
diff changeset
13 interface MyInterface{
3269e4627918 init dstress
svnowner
parents:
diff changeset
14 }
3269e4627918 init dstress
svnowner
parents:
diff changeset
15
3269e4627918 init dstress
svnowner
parents:
diff changeset
16 class MyClass : MyInterface {
3269e4627918 init dstress
svnowner
parents:
diff changeset
17 }
3269e4627918 init dstress
svnowner
parents:
diff changeset
18
3269e4627918 init dstress
svnowner
parents:
diff changeset
19 int main(){
3269e4627918 init dstress
svnowner
parents:
diff changeset
20 MyClass c;
3269e4627918 init dstress
svnowner
parents:
diff changeset
21 c = new MyClass();
3269e4627918 init dstress
svnowner
parents:
diff changeset
22
3269e4627918 init dstress
svnowner
parents:
diff changeset
23 MyInterface i;
3269e4627918 init dstress
svnowner
parents:
diff changeset
24 i = c;
3269e4627918 init dstress
svnowner
parents:
diff changeset
25
3269e4627918 init dstress
svnowner
parents:
diff changeset
26 Object o;
3269e4627918 init dstress
svnowner
parents:
diff changeset
27 o = i;
3269e4627918 init dstress
svnowner
parents:
diff changeset
28 return 0;
3269e4627918 init dstress
svnowner
parents:
diff changeset
29 }