annotate undefined/abstract_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 66f476bc8963
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
598
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
1 // $HeadURL$
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
2 // $Date$
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
3 // $Author$
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
4
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
5 // @author@ Stewart Gordon <Steward_member@pathlink.com>
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
6 // @date@ 2004-09-24
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
7 // @uri@ news:cj0qf6$2u2v$1@digitaldaemon.com
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
8 // @url@ nntp://digitalmars.com/digitalmars.D.bugs/1940
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
9
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
10 module dstress.compile.abstract_03;
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
11
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
12 int status;
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
13
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
14 abstract interface MyInterface{
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
15 abstract int test()
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
16 out{
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
17 status++;
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
18 };
66f476bc8963 undefined contracts for abstract functions
thomask
parents:
diff changeset
19 }