annotate nocompile/final_01.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 00ac8cb240eb
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
360
e38919011244 dif. fixes 3
thomask
parents: 15
diff changeset
1 // $HeadURL$
e38919011244 dif. fixes 3
thomask
parents: 15
diff changeset
2 // $Date$
e38919011244 dif. fixes 3
thomask
parents: 15
diff changeset
3 // $Author$
e38919011244 dif. fixes 3
thomask
parents: 15
diff changeset
4
1548
00ac8cb240eb Matti Niemenmaa <deewiant@gmail.com>
thomask
parents: 360
diff changeset
5 // @author@ Matti Niemenmaa <deewiant@gmail.com>
00ac8cb240eb Matti Niemenmaa <deewiant@gmail.com>
thomask
parents: 360
diff changeset
6 // @date@ 2006-11-18
00ac8cb240eb Matti Niemenmaa <deewiant@gmail.com>
thomask
parents: 360
diff changeset
7 // @uri@ http://d.puremagic.com/issues/show_bug.cgi?id=559
00ac8cb240eb Matti Niemenmaa <deewiant@gmail.com>
thomask
parents: 360
diff changeset
8
00ac8cb240eb Matti Niemenmaa <deewiant@gmail.com>
thomask
parents: 360
diff changeset
9 // __DSTRESS_ELINE__ 19
360
e38919011244 dif. fixes 3
thomask
parents: 15
diff changeset
10
e38919011244 dif. fixes 3
thomask
parents: 15
diff changeset
11 module dstress.nocompile.final_01;
e38919011244 dif. fixes 3
thomask
parents: 15
diff changeset
12
15
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
13 class Parent{
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
14 final void test(){
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
15 }
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
16 }
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
17
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
18 class Child : Parent{
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
19 void test(){
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
20 }
fa94281987cf added tests for final keyword
unknown
parents:
diff changeset
21 }