changeset 711:5c3e15ed07b6

(none)
author thomask
date Sun, 23 Oct 2005 10:31:14 +0000
parents 8cba64b24615
children aebd2e3d6382
files nocompile/n/new_25_A.d nocompile/n/new_25_B.d nocompile/n/new_25_C.d nocompile/n/new_25_D.d
diffstat 4 files changed, 57 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/n/new_25_A.d	Sun Oct 23 10:31:14 2005 +0000
@@ -0,0 +1,14 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// __DSTRESS_ELINE__ 13
+
+module dstress.nocompile.n.new_25_A;
+
+class C{
+}
+
+void main(){
+	C** c = new C*();
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/n/new_25_B.d	Sun Oct 23 10:31:14 2005 +0000
@@ -0,0 +1,14 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// __DSTRESS_ELINE__ 13
+
+module dstress.nocompile.n.new_25_B;
+
+struct C{
+}
+
+void main(){
+	C** c = new C*();
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/n/new_25_C.d	Sun Oct 23 10:31:14 2005 +0000
@@ -0,0 +1,15 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// __DSTRESS_ELINE__ 14
+
+module dstress.nocompile.n.new_25_C;
+
+enum C{
+	DUMMY
+}
+
+void main(){
+	C** c = new C*();
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/n/new_25_D.d	Sun Oct 23 10:31:14 2005 +0000
@@ -0,0 +1,14 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// __DSTRESS_ELINE__ 13
+
+module dstress.nocompile.n.new_25_D;
+
+union C{
+}
+
+void main(){
+	C** c = new C*();
+}