annotate run/alias_11.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 ec5e144583ea
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
374
f87ba6507260 added missing meta-data
thomask
parents: 2
diff changeset
1 // $HeadURL$
f87ba6507260 added missing meta-data
thomask
parents: 2
diff changeset
2 // $Date$
f87ba6507260 added missing meta-data
thomask
parents: 2
diff changeset
3 // $Author$
f87ba6507260 added missing meta-data
thomask
parents: 2
diff changeset
4
2
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
5 // @author@ Nick <Nick_member@pathlink.com>
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
6 // @date@ 2004-09-11
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
7
374
f87ba6507260 added missing meta-data
thomask
parents: 2
diff changeset
8 module dstress.run.alias_11;
f87ba6507260 added missing meta-data
thomask
parents: 2
diff changeset
9
2
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
10 class bar(Tp: Tp[]){
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
11 }
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
12
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
13 alias bar!(char[]) Alias;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
14
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
15 int main(){
1559
ec5e144583ea D1 -> D2 : 1/N
thomask
parents: 374
diff changeset
16 Alias a = new Alias();
2
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
17 return 0;
de27ca625bf7 extended abstract/alias and template tests
thomask
parents:
diff changeset
18 }