annotate run/static_28.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 6e4063f99377
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
214
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
1 // $HeadURL$
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
2 // $Date$
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
3 // $Author$
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
4
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
5 // @author@ h3r3tic <foo@bar.baz>
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
6 // @date@ 2004-12-26
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
7 // @uri@ news:cqmmre$1vvo$1@digitaldaemon.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=2605
214
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
9
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
10 module dstress.run.static_28;
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
11
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
12 union MyUnion{
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
13 static int x;
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
14 }
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
15
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
16 void foo(int i){
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
17 union MyUnione{
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
18 static int x;
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
19 }
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
20 }
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
21
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
22 int main(){
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
23 return 0;
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
24 }