annotate compile/bug_e2ir_1158_A.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents 8a2ff09d62cb
children d3a3e0c251d8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
358
8a2ff09d62cb dif. fixes 1
thomask
parents: 225
diff changeset
1 // $HeadURL$
8a2ff09d62cb dif. fixes 1
thomask
parents: 225
diff changeset
2 // $Date$
8a2ff09d62cb dif. fixes 1
thomask
parents: 225
diff changeset
3 // $Author$
8a2ff09d62cb dif. fixes 1
thomask
parents: 225
diff changeset
4
172
e5bbb877feb9 extended offsetof / offset tests
thomask
parents:
diff changeset
5 // @uri@ news:cok6h5$1p9u$1@digitaldaemon.com
e5bbb877feb9 extended offsetof / offset tests
thomask
parents:
diff changeset
6 // @author@ Stewart Gordon <smjg_1998@yahoo.com>
e5bbb877feb9 extended offsetof / offset tests
thomask
parents:
diff changeset
7 // @date@ 2004-12-01
1383
52c9e86b6486 @url@ -> @uri@
thomask
parents: 358
diff changeset
8 // @uri@ nntp://news.digitalmars.com/digitalmars.D.bugs/2395
172
e5bbb877feb9 extended offsetof / offset tests
thomask
parents:
diff changeset
9
e5bbb877feb9 extended offsetof / offset tests
thomask
parents:
diff changeset
10 module dstress.compile.bug_e2ir_1158_A;
e5bbb877feb9 extended offsetof / offset tests
thomask
parents:
diff changeset
11
225
a17c5241fa96 disabled Windows specific test for non-Windows systems
thomask
parents: 172
diff changeset
12 version(Windows){
a17c5241fa96 disabled Windows specific test for non-Windows systems
thomask
parents: 172
diff changeset
13
a17c5241fa96 disabled Windows specific test for non-Windows systems
thomask
parents: 172
diff changeset
14 import std.c.windows.windows;
172
e5bbb877feb9 extended offsetof / offset tests
thomask
parents:
diff changeset
15
225
a17c5241fa96 disabled Windows specific test for non-Windows systems
thomask
parents: 172
diff changeset
16 void main(char[][] args) {
a17c5241fa96 disabled Windows specific test for non-Windows systems
thomask
parents: 172
diff changeset
17 HDC dc = (args.length > 1 ? &GetWindowDC : &GetDC) (null);
a17c5241fa96 disabled Windows specific test for non-Windows systems
thomask
parents: 172
diff changeset
18 }
a17c5241fa96 disabled Windows specific test for non-Windows systems
thomask
parents: 172
diff changeset
19
172
e5bbb877feb9 extended offsetof / offset tests
thomask
parents:
diff changeset
20 }