changeset 279:f8307bca5f97

new struct* marko <tm030127d@galeb.etf.bg.ac.yu> 2005-02-10 news:opslzmx6m0hjnhpc@pentium2 nntp://news.digitalmars.com/digitalmars.D.bugs/2934
author thomask
date Sat, 12 Feb 2005 00:37:55 +0000
parents ff8070672e37
children 8e103eba0fb4
files run/new_01.d
diffstat 1 files changed, 22 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/new_01.d	Sat Feb 12 00:37:55 2005 +0000
@@ -0,0 +1,22 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	marko <tm030127d@galeb.etf.bg.ac.yu>
+// @date@	2005-02-10
+// @uri@	news:opslzmx6m0hjnhpc@pentium2
+// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/2934
+
+module dstress.run.new_01;
+
+struct VNode{
+    int a;
+    Node next;
+}
+
+alias VNode* Node;
+
+int main(){
+    Node n = new VNode;
+	return 0;
+}