annotate run/static_27.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents ff42f2c64363
children 6e4063f99377
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
1383
52c9e86b6486 @url@ -> @uri@
thomask
parents: 214
diff changeset
8 // @uri@ nntp://digitalmars.com/digitalmars.D.bugs/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_27;
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
11
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
12 class MyClass{
ff42f2c64363 extended static class/union member tests
thomask
parents:
diff changeset
13 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 class MyClass{
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 }