annotate nocompile/ptr_09.d @ 1576:b3e16c86558e

[Issue 1398] New: GDC doesn't generate correct code <mariusmuja@gmail.com> 2007-08-04 http://d.puremagic.com/issues/show_bug.cgi?id=1398
author thomask
date Thu, 21 Feb 2008 15:20:08 +0000
parents 32f7f8ce5e51
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
169
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
1 // $HeadURL$
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
2 // $Date$
199
1a77f6d93b45 1) added websvn links
thomask
parents: 169
diff changeset
3 // $Author$
169
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
4
374
f87ba6507260 added missing meta-data
thomask
parents: 199
diff changeset
5 // __DSTRESS_ELINE__ 12
f87ba6507260 added missing meta-data
thomask
parents: 199
diff changeset
6
169
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
7 module dstress.nocompile.ptr_09;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
8
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
9 int main(){
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
10 int* i;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
11
570
32f7f8ce5e51 updated "===" -> "is" and "!==" to "!(...===...)"
thomask
parents: 374
diff changeset
12 assert(i.ptr is null);
169
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
13
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
14 return 0;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
15 }