annotate nocompile/ptr_07.d @ 169:d7e8a8ec71d4

extended ptr tests
author thomask
date Wed, 01 Dec 2004 12:36:20 +0000
parents
children 1a77f6d93b45
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$
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
3 // Author$
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
4
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
5 module dstress.nocompile.ptr_07;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
6
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
7 int main(){
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
8 Object** pointer;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
9
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
10 assert(pointer.ptr === null);
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
11
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
12 return 0;
d7e8a8ec71d4 extended ptr tests
thomask
parents:
diff changeset
13 }