annotate run/new_01.d @ 1597:8b9d4d2f925a

Fix typos in complex tests. See D bug 614.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 16:53:58 +0200
parents d3a3e0c251d8
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
279
f8307bca5f97 new struct*
thomask
parents:
diff changeset
1 // $HeadURL$
f8307bca5f97 new struct*
thomask
parents:
diff changeset
2 // $Date$
f8307bca5f97 new struct*
thomask
parents:
diff changeset
3 // $Author$
f8307bca5f97 new struct*
thomask
parents:
diff changeset
4
f8307bca5f97 new struct*
thomask
parents:
diff changeset
5 // @author@ marko <tm030127d@galeb.etf.bg.ac.yu>
f8307bca5f97 new struct*
thomask
parents:
diff changeset
6 // @date@ 2005-02-10
f8307bca5f97 new struct*
thomask
parents:
diff changeset
7 // @uri@ news:opslzmx6m0hjnhpc@pentium2
1384
d3a3e0c251d8 nntp: -> http:
thomask
parents: 1383
diff changeset
8 // @uri@ http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2934
279
f8307bca5f97 new struct*
thomask
parents:
diff changeset
9
f8307bca5f97 new struct*
thomask
parents:
diff changeset
10 module dstress.run.new_01;
f8307bca5f97 new struct*
thomask
parents:
diff changeset
11
f8307bca5f97 new struct*
thomask
parents:
diff changeset
12 struct VNode{
f8307bca5f97 new struct*
thomask
parents:
diff changeset
13 int a;
f8307bca5f97 new struct*
thomask
parents:
diff changeset
14 Node next;
f8307bca5f97 new struct*
thomask
parents:
diff changeset
15 }
f8307bca5f97 new struct*
thomask
parents:
diff changeset
16
f8307bca5f97 new struct*
thomask
parents:
diff changeset
17 alias VNode* Node;
f8307bca5f97 new struct*
thomask
parents:
diff changeset
18
f8307bca5f97 new struct*
thomask
parents:
diff changeset
19 int main(){
f8307bca5f97 new struct*
thomask
parents:
diff changeset
20 Node n = new VNode;
f8307bca5f97 new struct*
thomask
parents:
diff changeset
21 return 0;
f8307bca5f97 new struct*
thomask
parents:
diff changeset
22 }